diff options
Diffstat (limited to 'clang/test')
-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; } -*/ |