aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-02-19 01:07:06 +0000
committerDouglas Gregor <dgregor@apple.com>2010-02-19 01:07:06 +0000
commitf638f9580ba0da99a66668f00e1a1d4987067bdd (patch)
tree1c09bb3731ab7a391b13461865f04a8d65703f9f /test/ASTMerge
parent9f9269e810bfe9aea0a57b09250be215808fc1a2 (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.c4
-rw-r--r--test/ASTMerge/Inputs/exprs2.c4
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)
};