mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-16 19:06:47 +00:00

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
11 lines
330 B
C
11 lines
330 B
C
// RUN: %clang_cc1 -emit-llvm -mrtd %s -o - -triple=i386-mingw32 | FileCheck %s
|
|
|
|
void f1(void) {}
|
|
// CHECK: define dso_local x86_stdcallcc void @"\01_f1@0"
|
|
|
|
void __stdcall f2(void) {}
|
|
// CHECK: define dso_local x86_stdcallcc void @"\01_f2@0"
|
|
|
|
void __fastcall f3(void) {}
|
|
// CHECK: define dso_local x86_fastcallcc void @"\01@f3@0"
|