aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/const-eval.c
diff options
context:
space:
mode:
authorCarl Norum <carl.norum@apple.com>2011-03-07 22:57:45 +0000
committerCarl Norum <carl.norum@apple.com>2011-03-07 22:57:45 +0000
commite224ba7e3e604113aa160c379293bcb6425e8f36 (patch)
tree7c84aa82923325d68202cfde7e8ea6f32c7ce4be /test/Sema/const-eval.c
parent0507be662df482b5c67b7905ed7ca368cb5c6b69 (diff)
Fix tests to account for new warning "expected ';' at end of declaration list". Sorry, folks!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/const-eval.c')
-rw-r--r--test/Sema/const-eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/const-eval.c b/test/Sema/const-eval.c
index aa0cee5da5..56c429c58c 100644
--- a/test/Sema/const-eval.c
+++ b/test/Sema/const-eval.c
@@ -58,7 +58,7 @@ EVAL_EXPR(29, (_Complex int)1 ? 1 : -1)
// PR4027 + rdar://6808859
-struct a { int x, y };
+struct a { int x, y; };
static struct a V2 = (struct a)(struct a){ 1, 2};
static const struct a V1 = (struct a){ 1, 2};