2009-11-08 09:45:36 +08:00
|
|
|
// RUN: clang-cc -emit-llvm < %s | grep 'fastcallcc' | count 4
|
2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc -emit-llvm < %s | grep 'stdcallcc' | count 4
|
2008-11-12 04:21:14 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|