mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 09:36:05 +00:00

This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples, Itanium otherwise. It's no longer possible to do weird combinations. To be able to run a test with a specific ABI without constraining it to a specific triple, new substitutions are added to lit: %itanium_abi_triple and %ms_abi_triple can be used to get the current target triple adjusted to the desired ABI. For example, if the test suite is running with the i686-pc-win32 target, %itanium_abi_triple will expand to i686-pc-mingw32. Differential Revision: http://llvm-reviews.chandlerc.com/D2545 llvm-svn: 199250
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 | \
|
|
// RUN: FileCheck --check-prefix=WIN %s
|
|
//
|
|
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-mingw32 | \
|
|
// RUN: FileCheck --check-prefix=ITANIUM %s
|
|
|
|
void __stdcall f1(void) {}
|
|
// WIN: define x86_stdcallcc void @"\01?f1@@YGXXZ"
|
|
// ITANIUM: define x86_stdcallcc void @"\01__Z2f1v@0"
|
|
|
|
void __fastcall f2(void) {}
|
|
// WIN: define x86_fastcallcc void @"\01?f2@@YIXXZ"
|
|
// ITANIUM: define x86_fastcallcc void @"\01@_Z2f2v@0"
|
|
|
|
extern "C" void __stdcall f3(void) {}
|
|
// WIN: define x86_stdcallcc void @"\01_f3@0"
|
|
// ITANIUM: define x86_stdcallcc void @"\01_f3@0"
|
|
|
|
extern "C" void __fastcall f4(void) {}
|
|
// WIN: define x86_fastcallcc void @"\01@f4@0"
|
|
// ITANIUM: define x86_fastcallcc void @"\01@f4@0"
|
|
|
|
struct Foo {
|
|
void __stdcall foo();
|
|
static void __stdcall bar();
|
|
};
|
|
|
|
void Foo::foo() {}
|
|
// WIN: define x86_stdcallcc void @"\01?foo@Foo@@QAGXXZ"
|
|
// ITANIUM: define x86_stdcallcc void @"\01__ZN3Foo3fooEv@4"
|
|
|
|
void Foo::bar() {}
|
|
// WIN: define x86_stdcallcc void @"\01?bar@Foo@@SGXXZ"
|
|
// ITANIUM: define x86_stdcallcc void @"\01__ZN3Foo3barEv@0"
|
|
|
|
// Mostly a test that we don't crash and that the names start with a \01.
|
|
// gcc on mingw produces __Zpp@4
|
|
// cl produces _++@4
|
|
extern "C" void __stdcall operator++(Foo &x) {
|
|
}
|
|
// WIN: define x86_stdcallcc void @"\01??E@YGXAAUFoo@@@Z"
|
|
// ITANIUM: define x86_stdcallcc void @"\01__ZppR3Foo@4"
|