diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:24:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:24:23 +0000 |
commit | bd249a542878a626192746c1e0c0b21f164e6df7 (patch) | |
tree | b658587e3524623023b936c4386274e60ce33c06 /test/ASTMerge/Inputs/exprs1.c | |
parent | 440806306674e23ad74726208cbdc6f37849dd9d (diff) |
AST import for sizeof and alignof expressions
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ASTMerge/Inputs/exprs1.c')
-rw-r--r-- | test/ASTMerge/Inputs/exprs1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ASTMerge/Inputs/exprs1.c b/test/ASTMerge/Inputs/exprs1.c index 03150a9e37..42e06de60a 100644 --- a/test/ASTMerge/Inputs/exprs1.c +++ b/test/ASTMerge/Inputs/exprs1.c @@ -3,6 +3,7 @@ enum E0 { E0_Val0 = 'a', E0_Val1 = (17), E0_Val2 = (1 << 2), - E0_Val3 = E0_Val2 + E0_Val3 = E0_Val2, + E0_Val4 = sizeof(int*) }; |