diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:07:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-19 01:07:06 +0000 |
commit | f638f9580ba0da99a66668f00e1a1d4987067bdd (patch) | |
tree | 1c09bb3731ab7a391b13461865f04a8d65703f9f /test/ASTMerge | |
parent | 9f9269e810bfe9aea0a57b09250be215808fc1a2 (diff) |
AST import of parenthesized expressions, unary operators, binary
operators, and compound assignment operators.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ASTMerge')
-rw-r--r-- | test/ASTMerge/Inputs/exprs1.c | 4 | ||||
-rw-r--r-- | test/ASTMerge/Inputs/exprs2.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/test/ASTMerge/Inputs/exprs1.c b/test/ASTMerge/Inputs/exprs1.c index f9de8df7fd..bc76887979 100644 --- a/test/ASTMerge/Inputs/exprs1.c +++ b/test/ASTMerge/Inputs/exprs1.c @@ -1,5 +1,7 @@ // Matching enum E0 { - E0_Val0 = 'a' + E0_Val0 = 'a', + E0_Val1 = (17), + E0_Val2 = (1 << 2) }; diff --git a/test/ASTMerge/Inputs/exprs2.c b/test/ASTMerge/Inputs/exprs2.c index f9de8df7fd..bc76887979 100644 --- a/test/ASTMerge/Inputs/exprs2.c +++ b/test/ASTMerge/Inputs/exprs2.c @@ -1,5 +1,7 @@ // Matching enum E0 { - E0_Val0 = 'a' + E0_Val0 = 'a', + E0_Val1 = (17), + E0_Val2 = (1 << 2) }; |