Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

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"