xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/encode-test-5.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple=x86_64-apple-darwin9 -emit-llvm -o %t %s
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc// RUN: grep ji.00 %t | count 1
4*f4a2713aSLionel Sambucchar *a = @encode(_Complex int);
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambuc// RUN: grep jf.00 %t | count 1
7*f4a2713aSLionel Sambucchar *b = @encode(_Complex float);
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel Sambuc// RUN: grep jd.00 %t | count 1
10*f4a2713aSLionel Sambucchar *c = @encode(_Complex double);
11*f4a2713aSLionel Sambuc
12*f4a2713aSLionel Sambuc// RUN: grep "t.00" %t | count 1
13*f4a2713aSLionel Sambucchar *e = @encode(__int128_t);
14*f4a2713aSLionel Sambuc
15*f4a2713aSLionel Sambuc// RUN: grep "T.00" %t | count 1
16*f4a2713aSLionel Sambucchar *f = @encode(__uint128_t);
17