llvm-project/clang/test/CodeGenCXX/microsoft-abi-eh-inlineasm.cpp
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

19 lines
537 B
C++

// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-pc-windows-msvc \
// RUN: -fexceptions -fcxx-exceptions | FileCheck %s
// Make sure calls to inline asm have funclet bundles.
extern "C" void might_throw();
extern "C" void foo() {
try {
might_throw();
} catch (int) {
__asm__("nop");
}
}
// CHECK-LABEL: define dso_local void @foo()
// CHECK: invoke void @might_throw()
// CHECK: %[[CATCHPAD:[^ ]*]] = catchpad within
// CHECK: call void asm sideeffect "nop", {{.*}} [ "funclet"(token %[[CATCHPAD]]) ]