[cfe-commits] r41397 - /cfe/trunk/test/Parser/expressions.c

Chris Lattner sabre at nondot.org
Fri Aug 24 22:31:22 PDT 2007


Author: lattner
Date: Sat Aug 25 00:31:19 2007
New Revision: 41397

URL: http://llvm.org/viewvc/llvm-project?rev=41397&view=rev
Log:
reenable this.

Modified:
    cfe/trunk/test/Parser/expressions.c

Modified: cfe/trunk/test/Parser/expressions.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Parser/expressions.c?rev=41397&r1=41396&r2=41397&view=diff

==============================================================================
--- cfe/trunk/test/Parser/expressions.c (original)
+++ cfe/trunk/test/Parser/expressions.c Sat Aug 25 00:31:19 2007
@@ -5,7 +5,7 @@
   if (sizeof (int));       // sizeof type
 
   (int)4;   // cast.
-  //(int){4}; // compound literal.
+  (int){4}; // compound literal.
 
   // FIXME: change this to the struct version when we can.
   //int A = (struct{ int a;}){ 1}.a;





More information about the cfe-commits mailing list