[cfe-commits] r41406 - /cfe/trunk/test/CodeGen/compound.c

Chris Lattner sabre at nondot.org
Sat Aug 25 14:57:08 PDT 2007


Author: lattner
Date: Sat Aug 25 16:57:08 2007
New Revision: 41406

URL: http://llvm.org/viewvc/llvm-project?rev=41406&view=rev
Log:
new testcase


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

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

==============================================================================
--- cfe/trunk/test/CodeGen/compound.c (original)
+++ cfe/trunk/test/CodeGen/compound.c Sat Aug 25 16:57:08 2007
@@ -3,7 +3,7 @@
 long long B;
 int C;
 int *P;
-void foo() {
+void test1() {
   C = (A /= B);
 
   P -= 4;
@@ -11,4 +11,6 @@
   C = P - (P+10);
 }
 
+short x; 
+void test2(char c) { x += c; }
 





More information about the cfe-commits mailing list