diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-02 00:37:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-02 00:37:27 +0000 |
commit | 3e156ad9adc7332e626eedbc86aa4e3b03f17ca5 (patch) | |
tree | 6bc14dc8d4644cbaaf8dae91ae65859cf9e6b8c1 /lib/CodeGen/CGExprConstant.cpp | |
parent | edf21bce6e64aade65d960f76dfd09a6dc1929b1 (diff) |
improve diagnostics on missing ; in a struct. Before:
t.c:4:3: error: expected ';' at end of declaration list
int y;
^
t.c:4:8: warning: extra ';' inside a struct or union
int y;
^
t.c:6:1: warning: expected ';' at end of declaration list
};
^
After:
t.c:3:8: error: expected ';' at end of declaration list
int x // expected-error {{expected ';' at end of declaration list}}
^
;
t.c:5:8: warning: expected ';' at end of declaration list
int z
^
;
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprConstant.cpp')
0 files changed, 0 insertions, 0 deletions