opnsense-src/test/CodeGenObjC/encode-test-5.m

17 lines
402 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple=x86_64-apple-darwin9 -emit-llvm -o %t %s
2009-06-02 13:58:47 -04:00
2009-11-18 09:59:57 -05:00
// RUN: grep ji.00 %t | count 1
2009-06-02 13:58:47 -04:00
char *a = @encode(_Complex int);
2009-11-18 09:59:57 -05:00
// RUN: grep jf.00 %t | count 1
2009-06-02 13:58:47 -04:00
char *b = @encode(_Complex float);
2009-11-18 09:59:57 -05:00
// RUN: grep jd.00 %t | count 1
2009-06-02 13:58:47 -04:00
char *c = @encode(_Complex double);
2009-11-18 09:59:57 -05:00
// RUN: grep "t.00" %t | count 1
2009-06-02 13:58:47 -04:00
char *e = @encode(__int128_t);
// RUN: grep "T.00" %t | count 1
char *f = @encode(__uint128_t);