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 | 58d489fc6eea2ff51915e6a7589774ecd630b1a6 (patch) | |
| tree | 5009dee379067e87b252db24a4fc5ff390435eee /clang/test/Sema/align-x86.c | |
| parent | ac546dc62e32e3b803f9905fab6025c926db7a74 (diff) | |
| download | bcm5719-llvm-58d489fc6eea2ff51915e6a7589774ecd630b1a6.tar.gz bcm5719-llvm-58d489fc6eea2ff51915e6a7589774ecd630b1a6.zip | |
Fix tests to account for new warning "expected ';' at end of declaration list". Sorry, folks!
llvm-svn: 127188
Diffstat (limited to 'clang/test/Sema/align-x86.c')
| -rw-r--r-- | clang/test/Sema/align-x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/align-x86.c b/clang/test/Sema/align-x86.c index c9a63989ecb..0c84384305a 100644 --- a/clang/test/Sema/align-x86.c +++ b/clang/test/Sema/align-x86.c @@ -14,7 +14,7 @@ short chk1[__alignof__(g3) == 8 ? 1 : -1]; short chk2[__alignof__(_Complex double) == 8 ? 1 : -1]; // PR6362 -struct __attribute__((packed)) {unsigned int a} g4; +struct __attribute__((packed)) {unsigned int a;} g4; short chk1[__alignof__(g4) == 1 ? 1 : -1]; short chk2[__alignof__(g4.a) == 1 ? 1 : -1]; |

