From: Chris Lattner Date: Mon, 26 Nov 2007 01:39:17 +0000 (+0000) Subject: this works. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09376fd7f7ea9b4a4846c3d9cd1bfade17e5ac8d;p=clang this works. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44321 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/conditional.c b/test/CodeGen/conditional.c index ef3283d1d4..57a0be1b10 100644 --- a/test/CodeGen/conditional.c +++ b/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; } -*/