blob: 970df3da87840ff1a62e1c31af98d0010e37109a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: clang-cc -triple=i686-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);
|