diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-26 01:39:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-26 01:39:17 +0000 |
commit | a3ee6fa84ff01d0c72182cab8e87749bdda68d7b (patch) | |
tree | 0811db7aea1e8a7b879911f049769820018e2c68 /clang | |
parent | 2f76e373ae2fa492d3dc939bd349002743a346ac (diff) | |
download | bcm5719-llvm-a3ee6fa84ff01d0c72182cab8e87749bdda68d7b.tar.gz bcm5719-llvm-a3ee6fa84ff01d0c72182cab8e87749bdda68d7b.zip |
this works.
llvm-svn: 44321
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGen/conditional.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/test/CodeGen/conditional.c b/clang/test/CodeGen/conditional.c index ef3283d1d49..57a0be1b105 100644 --- a/clang/test/CodeGen/conditional.c +++ b/clang/test/CodeGen/conditional.c @@ -4,9 +4,7 @@ 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; } -*/ |