diff options
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/conditional.c | 12 | ||||
-rw-r--r-- | clang/test/CodeGen/int-to-pointer.c | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/CodeGen/conditional.c b/clang/test/CodeGen/conditional.c new file mode 100644 index 00000000000..ef3283d1d49 --- /dev/null +++ b/clang/test/CodeGen/conditional.c @@ -0,0 +1,12 @@ +// RUN: clang -emit-llvm %s + +float test1(int cond, float a, float b) +{ + return cond ? a : b; +} +/* this will fail for now... +double test2(int cond, float a, double b) +{ + return cond ? a : b; +} +*/ diff --git a/clang/test/CodeGen/int-to-pointer.c b/clang/test/CodeGen/int-to-pointer.c new file mode 100644 index 00000000000..fdb61882281 --- /dev/null +++ b/clang/test/CodeGen/int-to-pointer.c @@ -0,0 +1,6 @@ +// RUN: clang -emit-llvm %s + +void *test(int i) +{ + return (void *)i; +} |