summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/stdcall-fastcall.c
blob: 11b652178ca8536cb1dde582f6218a43f5bfba0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;
}

OpenPOWER on IntegriCloud