Aaron Ballman | 82bfa19 | 2012-10-02 14:26:08 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -fsyntax-only -triple i386-unknown-unknown -verify |
Nate Begeman | b6789ca | 2008-03-07 20:04:49 +0000 | [diff] [blame] | 2 | |
| 3 | void __attribute__((fastcall)) foo(float *a) { |
| 4 | } |
| 5 | |
| 6 | void __attribute__((stdcall)) bar(float *a) { |
| 7 | } |
| 8 | |
John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 9 | void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{attribute takes no arguments}} |
Nate Begeman | b6789ca | 2008-03-07 20:04:49 +0000 | [diff] [blame] | 10 | } |
John McCall | 9112b93 | 2009-11-04 03:36:09 +0000 | [diff] [blame] | 11 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 12 | void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}} |
John McCall | 9112b93 | 2009-11-04 03:36:09 +0000 | [diff] [blame] | 13 | } |
| 14 | |
| 15 | void __attribute__((fastcall)) test1(void) { |
| 16 | } |
| 17 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 18 | void __attribute__((fastcall)) test2(int a, ...) { // expected-error {{variadic function cannot use fastcall calling convention}} |
John McCall | 9112b93 | 2009-11-04 03:36:09 +0000 | [diff] [blame] | 19 | } |
Eli Friedman | 8f4c59e | 2009-11-09 18:38:53 +0000 | [diff] [blame] | 20 | |
| 21 | void __attribute__((cdecl)) ctest0() {} |
| 22 | |
John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 23 | void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{attribute takes no arguments}} |
John McCall | f82b4e8 | 2010-02-04 05:44:44 +0000 | [diff] [blame] | 24 | |
| 25 | void (__attribute__((fastcall)) *pfoo)(float*) = foo; |
| 26 | |
| 27 | void (__attribute__((stdcall)) *pbar)(float*) = bar; |
| 28 | |
| 29 | void (__attribute__((cdecl)) *ptest1)(void) = test1; // expected-warning {{incompatible pointer types}} |
| 30 | |
| 31 | void (*pctest0)() = ctest0; |
| 32 | |
| 33 | void ctest2() {} |
| 34 | void (__attribute__((cdecl)) *pctest2)() = ctest2; |
| 35 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 36 | typedef void (__attribute__((fastcall)) *Handler) (float *); |
| 37 | Handler H = foo; |
| 38 | |
Benjamin Kramer | fac8e43 | 2012-08-14 13:13:47 +0000 | [diff] [blame] | 39 | int __attribute__((pcs("aapcs", "aapcs"))) pcs1(void); // expected-error {{attribute takes one argument}} |
| 40 | int __attribute__((pcs())) pcs2(void); // expected-error {{attribute takes one argument}} |
| 41 | int __attribute__((pcs(pcs1))) pcs3(void); // expected-error {{attribute takes one argument}} |
| 42 | int __attribute__((pcs(0))) pcs4(void); // expected-error {{'pcs' attribute requires parameter 1 to be a string}} |
Aaron Ballman | 82bfa19 | 2012-10-02 14:26:08 +0000 | [diff] [blame] | 43 | /* These are ignored because the target is i386 and not ARM */ |
| 44 | int __attribute__((pcs("aapcs"))) pcs5(void); // expected-warning {{calling convention 'pcs' ignored for this target}} |
| 45 | int __attribute__((pcs("aapcs-vfp"))) pcs6(void); // expected-warning {{calling convention 'pcs' ignored for this target}} |
Richard Smith | d03de6a | 2013-01-29 10:02:16 +0000 | [diff] [blame] | 46 | int __attribute__((pcs("foo"))) pcs7(void); // expected-error {{invalid PCS type}} |
Benjamin Kramer | fac8e43 | 2012-08-14 13:13:47 +0000 | [diff] [blame] | 47 | |
Charles Davis | 064f7db | 2010-02-23 06:13:55 +0000 | [diff] [blame] | 48 | // PR6361 |
| 49 | void ctest3(); |
| 50 | void __attribute__((cdecl)) ctest3() {} |
| 51 | |
Charles Davis | 328ce34 | 2010-02-24 02:27:18 +0000 | [diff] [blame] | 52 | // PR6408 |
| 53 | typedef __attribute__((stdcall)) void (*PROC)(); |
| 54 | PROC __attribute__((cdecl)) ctest4(const char *x) {} |
| 55 | |
Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 56 | void __attribute__((pnaclcall)) pnaclfunc(float *a) {} // expected-warning {{calling convention 'pnaclcall' ignored for this target}} |
Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 57 | |
| 58 | void __attribute__((intel_ocl_bicc)) inteloclbifunc(float *a) {} |