diff --git a/clang/test/CodeGen/conditional.c b/clang/test/CodeGen/conditional.c index ef3283d1d498..57a0be1b1057 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; } -*/