diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:32:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:32:14 +0000 |
commit | 008847a70ab122a99911149199855060fb3753b4 (patch) | |
tree | 792b78c27bcb60437a88a6ca91d3f812ab52ce3b /test/ASTMerge/Inputs/exprs1.c | |
parent | bd249a542878a626192746c1e0c0b21f164e6df7 (diff) |
AST import for CStyleCastExpr. With this, we can import Cocoa.h into an empty context
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96648 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 42e06de60a..1c268da15f 100644 --- a/test/ASTMerge/Inputs/exprs1.c +++ b/test/ASTMerge/Inputs/exprs1.c @@ -4,6 +4,7 @@ enum E0 { E0_Val1 = (17), E0_Val2 = (1 << 2), E0_Val3 = E0_Val2, - E0_Val4 = sizeof(int*) + E0_Val4 = sizeof(int*), + E0_Val5 = (unsigned int)-1 }; |