[cfe-commits] r40994 - /cfe/trunk/test/CodeGen/complex.c

Chris Lattner sabre at nondot.org
Fri Aug 10 10:03:00 PDT 2007


Author: lattner
Date: Fri Aug 10 12:02:59 2007
New Revision: 40994

URL: http://llvm.org/viewvc/llvm-project?rev=40994&view=rev
Log:
make this harder


Modified:
    cfe/trunk/test/CodeGen/complex.c

Modified: cfe/trunk/test/CodeGen/complex.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/complex.c?rev=40994&r1=40993&r2=40994&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/complex.c (original)
+++ cfe/trunk/test/CodeGen/complex.c Fri Aug 10 12:02:59 2007
@@ -7,3 +7,13 @@
 
   return a * b != b * a;
 }
+
+_Complex double bar(int);
+void test(_Complex double*);
+
+void test2(int c) {
+  _Complex double X;
+  X = bar(1);
+  test(&X);
+}
+





More information about the cfe-commits mailing list