diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-10-09 00:22:23 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-10-09 00:22:23 +0000 |
commit | 767c1f84283acd1256ff3391b7e40da6289301f2 (patch) | |
tree | 2f4814676123c01db4e6f9e33aaa55c706915412 /clang/test/Parser/expressions.c | |
parent | e4e12d045583adbf1d4c1a11c21747066ba46f15 (diff) | |
download | bcm5719-llvm-767c1f84283acd1256ff3391b7e40da6289301f2.tar.gz bcm5719-llvm-767c1f84283acd1256ff3391b7e40da6289301f2.zip |
Make wording for certain invalid unary expressions more consistent.
An invalid decltype expression like 'decltype int' gives:
error: expected '(' after 'decltype'
This makes it so 'sizeof int' gives a similar one:
error: expected parentheses around type name in sizeof expression
llvm-svn: 192258
Diffstat (limited to 'clang/test/Parser/expressions.c')
-rw-r--r-- | clang/test/Parser/expressions.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Parser/expressions.c b/clang/test/Parser/expressions.c index dfc8f6c712b..95d6fb354f3 100644 --- a/clang/test/Parser/expressions.c +++ b/clang/test/Parser/expressions.c @@ -62,8 +62,8 @@ void test7() { struct pr16992 { int x; }; void func_16992 () { - int x1 = sizeof int; // expected-error{{missed parentheses around type name in sizeof}} - int x2 = sizeof struct pr16992; // expected-error{{missed parentheses around type name in sizeof}} - int x3 = __alignof int; // expected-error{{missed parentheses around type name in __alignof}} - int x4 = _Alignof int; // expected-error{{missed parentheses around type name in _Alignof}} + int x1 = sizeof int; // expected-error {{expected parentheses around type name in sizeof expression}} + int x2 = sizeof struct pr16992; // expected-error {{expected parentheses around type name in sizeof expression}} + int x3 = __alignof int; // expected-error {{expected parentheses around type name in __alignof expression}} + int x4 = _Alignof int; // expected-error {{expected parentheses around type name in _Alignof expression}} } |