diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-05-16 19:30:01 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-05-16 19:30:01 +0000 |
commit | f39ea8535b44d65afbf73f64c488b97e63c072d3 (patch) | |
tree | d0c23af0d02b2c92ca72f075bf27c1a38386c274 /clang/test/FixIt | |
parent | 45be55d181d0a1284a921b0586ccd2dea8299385 (diff) | |
download | bcm5719-llvm-f39ea8535b44d65afbf73f64c488b97e63c072d3.tar.gz bcm5719-llvm-f39ea8535b44d65afbf73f64c488b97e63c072d3.zip |
Update test case; I'm confused why this wasn't failing on the buildbot
though?
llvm-svn: 71955
Diffstat (limited to 'clang/test/FixIt')
-rw-r--r-- | clang/test/FixIt/fixit-at.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/FixIt/fixit-at.c b/clang/test/FixIt/fixit-at.c index eb338553652..42488f56bc7 100644 --- a/clang/test/FixIt/fixit-at.c +++ b/clang/test/FixIt/fixit-at.c @@ -2,4 +2,4 @@ _Complex cd; -int i0 = { 17 }; // expected-warning{{braces}} +int i0[1] = { { 17 } }; // expected-warning{{braces}} |