Files
clang-p2996/clang/test/PCH/uses-seh.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

30 lines
696 B
C++

// Make SEH works in PCH
//
// Test this without pch.
// RUN: %clang_cc1 -fms-extensions -triple x86_64-windows-msvc -std=c++11 -include %s -emit-llvm -o - %s | FileCheck %s
// Test with pch.
// RUN: %clang_cc1 -fms-extensions -triple x86_64-windows-msvc -std=c++11 -emit-pch -o %t %s
// RUN: %clang_cc1 -fms-extensions -triple x86_64-windows-msvc -std=c++11 -include-pch %t -emit-llvm -o - %s | FileCheck %s
#ifndef HEADER
#define HEADER
int shouldCatch();
inline int f() {
__try {
} __except (shouldCatch()) {
}
return 0;
}
int x = f();
// CHECK: define linkonce_odr dso_local i32 @"\01?f@@YAHXZ"()
// CHECK: define internal i32 @"\01?filt$0@0@f@@"({{.*}})
#else
// empty
#endif