Files
clang-p2996/clang/test/CodeGen/microsoft-call-conv-x64.c
Rafael Espindola 922f2aa9b2 Bring r325915 back.
The tests that failed on a windows host have been fixed.

Original message:

Start setting dso_local for COFF.

With this there are still some GVs where we don't set dso_local
because setGVProperties is never called. I intend to fix that in
followup commits. This is just the bare minimum to teach
shouldAssumeDSOLocal what it should do for COFF.

llvm-svn: 325940
2018-02-23 19:30:48 +00:00

40 lines
872 B
C

// RUN: %clang_cc1 -triple x86_64-pc-win32 -emit-llvm < %s | FileCheck %s
void __fastcall f1(void);
void __stdcall f2(void);
void __fastcall f4(void) {
// CHECK-LABEL: define dso_local void @f4()
f1();
// CHECK: call void @f1()
}
void __stdcall f5(void) {
// CHECK-LABEL: define dso_local void @f5()
f2();
// CHECK: call void @f2()
}
// PR5280
void (__fastcall *pf1)(void) = f1;
void (__stdcall *pf2)(void) = f2;
void (__fastcall *pf4)(void) = f4;
void (__stdcall *pf5)(void) = f5;
int main(void) {
f4(); f5();
// CHECK: call void @f4()
// CHECK: call void @f5()
pf1(); pf2(); pf4(); pf5();
// CHECK: call void %{{.*}}()
// CHECK: call void %{{.*}}()
// CHECK: call void %{{.*}}()
// CHECK: call void %{{.*}}()
return 0;
}
// PR7117
void __stdcall f7(foo) int foo; {}
void f8(void) {
f7(0);
// CHECK: call void @f7(i32 0)
}