diff options
author | Carl Norum <carl.norum@apple.com> | 2011-03-07 22:57:45 +0000 |
---|---|---|
committer | Carl Norum <carl.norum@apple.com> | 2011-03-07 22:57:45 +0000 |
commit | e224ba7e3e604113aa160c379293bcb6425e8f36 (patch) | |
tree | 7c84aa82923325d68202cfde7e8ea6f32c7ce4be /test/Sema/const-eval.c | |
parent | 0507be662df482b5c67b7905ed7ca368cb5c6b69 (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.c | 2 |
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}; |