File: m68k-rtdcall.c

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (46 lines) | stat: -rw-r--r-- 2,175 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// RUN: %clang_cc1 -triple m68k-unknown-unknown -mrtd -std=c89 -verify -verify=rtd %s
// RUN: %clang_cc1 -triple m68k-unknown-unknown -std=c89 -verify -verify=nortd %s

// rtd-error@+2 {{function with no prototype cannot use the m68k_rtd calling convention}}
void foo(int arg) {
  bar(arg);
}

// nortd-note@+4 {{previous declaration is here}}
// nortd-error@+4 {{function declared 'm68k_rtd' here was previously declared without calling convention}}
// nortd-note@+4 {{previous declaration is here}}
// nortd-error@+4 {{function declared 'm68k_rtd' here was previously declared without calling convention}}
void nonvariadic1(int a, int b, int c);
void __attribute__((m68k_rtd)) nonvariadic1(int a, int b, int c);
void nonvariadic2(int a, int b, int c);
void __attribute__((m68k_rtd)) nonvariadic2(int a, int b, int c) { }

// expected-error@+2 {{variadic function cannot use m68k_rtd calling convention}}
void variadic(int a, ...);
void __attribute__((m68k_rtd)) variadic(int a, ...);

// rtd-note@+2 {{previous declaration is here}}
// rtd-error@+2 {{redeclaration of 'a' with a different type: 'void ((*))(int, int) __attribute__((cdecl))' vs 'void (*)(int, int) __attribute__((m68k_rtd))'}}
extern void (*a)(int, int);
__attribute__((cdecl)) extern void (*a)(int, int);

extern void (*b)(int, ...);
__attribute__((cdecl)) extern void (*b)(int, ...);

// nortd-note@+2 {{previous declaration is here}}
// nortd-error@+2 {{redeclaration of 'c' with a different type: 'void ((*))(int, int) __attribute__((m68k_rtd))' vs 'void (*)(int, int)'}}
extern void (*c)(int, int);
__attribute__((m68k_rtd)) extern void (*c)(int, int);

// expected-error@+2 {{variadic function cannot use m68k_rtd calling convention}}
extern void (*d)(int, ...);
__attribute__((m68k_rtd)) extern void (*d)(int, ...);

// expected-warning@+1 {{'m68k_rtd' only applies to function types; type here is 'int'}}
__attribute__((m68k_rtd)) static int g = 0;

// expected-error@+1 {{'m68k_rtd' attribute takes no arguments}}
void __attribute__((m68k_rtd("invalid"))) z(int a);

// expected-error@+1 {{function with no prototype cannot use the m68k_rtd calling convention}}
void __attribute__((m68k_rtd)) e();