mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
17 lines
361 B
C
17 lines
361 B
C
// RUN: clang-cc -emit-llvm < %s | grep 'fastcallcc' | count 4
|
|
// RUN: clang-cc -emit-llvm < %s | grep 'stdcallcc' | count 4
|
|
|
|
void __attribute__((fastcall)) f1(void);
|
|
void __attribute__((stdcall)) f2(void);
|
|
void __attribute__((fastcall)) f3(void) {
|
|
f1();
|
|
}
|
|
void __attribute__((stdcall)) f4(void) {
|
|
f2();
|
|
}
|
|
|
|
int main(void) {
|
|
f3(); f4();
|
|
return 0;
|
|
}
|
|
|