aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/callingconv.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/callingconv.c')
-rw-r--r--clang/test/Sema/callingconv.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/test/Sema/callingconv.c b/clang/test/Sema/callingconv.c
deleted file mode 100644
index fa0af76..0000000
--- a/clang/test/Sema/callingconv.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// 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)}}
-}