Files
clang-p2996/clang/test/CodeGenObjC/encode-test-5.m
Chris Lattner 7d4f5c47ce only support int128_t on 64-bit and larger targets. 32-bit targets don't
have support for __divti3 and friends.

llvm-svn: 70480
2009-04-30 06:18:40 +00:00

17 lines
421 B
Objective-C

// RUN: clang-cc -triple=x86_64-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep ji %t | count 1 &&
char *a = @encode(_Complex int);
// RUN: grep jf %t | count 1 &&
char *b = @encode(_Complex float);
// RUN: grep jd %t | count 1 &&
char *c = @encode(_Complex double);
// RUN: grep "t.00" %t | count 1 &&
char *e = @encode(__int128_t);
// RUN: grep "T.00" %t | count 1
char *f = @encode(__uint128_t);