commit | f493756cb8bd226f485df1e5edb0cef936cd4269 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Aug 25 05:31:19 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Aug 25 05:31:19 2007 +0000 |
tree | a6a05b66221632d206de70d9108be58dae11e1f1 | |
parent | da05040af214afc5797bb13578b05dbdb898ac66 [diff] [blame] |
reenable this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41397 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Parser/expressions.c b/test/Parser/expressions.c index 1fb2d89..3fb8c1c 100644 --- a/test/Parser/expressions.c +++ b/test/Parser/expressions.c
@@ -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;