aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-25 05:31:19 +0000
committerChris Lattner <sabre@nondot.org>2007-08-25 05:31:19 +0000
commite45fa6af52d0a99ad3c6e4b58a4e4c351c987b87 (patch)
treea6a05b66221632d206de70d9108be58dae11e1f1
parentcc6f65d9f210efc56d7418753e93bf5a14f3ac59 (diff)
reenable this.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41397 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Parser/expressions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Parser/expressions.c b/test/Parser/expressions.c
index 1fb2d8968c..3fb8c1c89d 100644
--- a/test/Parser/expressions.c
+++ b/test/Parser/expressions.c
@@ -5,7 +5,7 @@ void test1() {
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;