diff options
-rw-r--r-- | clang/test/Sema/callingconv.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Sema/callingconv.c b/clang/test/Sema/callingconv.c new file mode 100644 index 00000000000..fa0af768342 --- /dev/null +++ b/clang/test/Sema/callingconv.c @@ -0,0 +1,10 @@ +// RUN: clang %s -fsyntax-only -verify + +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)}} +} |