From: Chris Lattner Date: Mon, 27 Aug 2007 16:37:44 +0000 (+0000) Subject: add some more testcases now that sema is happier :) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9cff1a9ac25f2b1386d3157e8daa0b219573d6a6;p=clang add some more testcases now that sema is happier :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41492 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/complex.c b/test/CodeGen/complex.c index 502ff0f0b3..3ac04218cc 100644 --- a/test/CodeGen/complex.c +++ b/test/CodeGen/complex.c @@ -31,7 +31,9 @@ void test3() { double Gr = __real g1; - //cf += D; // fixme: sema bug + cf += D; D += cf; cf /= g1; + g1 = g1 + D; + g1 = D + g1; }