blob: 970df3da87840ff1a62e1c31af98d0010e37109a [file] [log] [blame]
Anders Carlssonc612f7b2009-04-09 21:55:45 +00001// RUN: clang-cc -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
2
3// RUN: grep ji %t | count 1 &&
4char *a = @encode(_Complex int);
5
6// RUN: grep jf %t | count 1 &&
7char *b = @encode(_Complex float);
8
9// RUN: grep jd %t | count 1
10char *c = @encode(_Complex double);
11