commit | 544cbe5e4fddf8ca66816aa7751cee09a737b3fe | [log] [tgz] |
---|---|---|
author | Anders Carlsson <andersca@mac.com> | Tue Jan 29 01:28:48 2008 +0000 |
committer | Anders Carlsson <andersca@mac.com> | Tue Jan 29 01:28:48 2008 +0000 |
tree | eb454448b4ec35f5619354923bf9675be94e0006 | |
parent | 35ab4f9e99ba3bbaf266ca8689252c51da3575b2 [diff] [blame] |
Correctly handle constants that refer to enums. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46481 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/init.c b/test/CodeGen/init.c index 77a85fa..24f8874 100644 --- a/test/CodeGen/init.c +++ b/test/CodeGen/init.c
@@ -1,7 +1,7 @@ // RUN: clang -emit-llvm %s void f1() { - // Braces in a scalar + // Scalars in braces. int a = { 1 }; int b = { 1, 2 }; -} \ No newline at end of file +}