diff options
author | John McCall <rjmccall@apple.com> | 2011-03-02 12:15:05 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-03-02 12:15:05 +0000 |
commit | 80ee5963fde83250a863785135bb7dbc7d45d8ef (patch) | |
tree | 706300ea28b57e425bedfcadbe17c208c7099a58 /clang/test/Sema/callingconv.c | |
parent | 86bc21ffcf1d4875818c9631bbd95152780655a9 (diff) | |
download | bcm5719-llvm-80ee5963fde83250a863785135bb7dbc7d45d8ef.tar.gz bcm5719-llvm-80ee5963fde83250a863785135bb7dbc7d45d8ef.zip |
Pretty up the wrong-number-of-arguments-for-attribute diagnostic by
using a custom plural form. Split out the range diagnostics as their
own message.
llvm-svn: 126840
Diffstat (limited to 'clang/test/Sema/callingconv.c')
-rw-r--r-- | clang/test/Sema/callingconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/callingconv.c b/clang/test/Sema/callingconv.c index 92a20572a2c..25669f08ae2 100644 --- a/clang/test/Sema/callingconv.c +++ b/clang/test/Sema/callingconv.c @@ -6,7 +6,7 @@ void __attribute__((fastcall)) foo(float *a) { void __attribute__((stdcall)) bar(float *a) { } -void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{attribute requires 0 argument(s)}} +void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{attribute takes no arguments}} } void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}} @@ -20,7 +20,7 @@ void __attribute__((fastcall)) test2(int a, ...) { // expected-error {{variadic void __attribute__((cdecl)) ctest0() {} -void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{attribute requires 0 argument(s)}} +void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{attribute takes no arguments}} void (__attribute__((fastcall)) *pfoo)(float*) = foo; |