forked from OSchip/llvm-project
Reverting r228628; it broke at least one builder due to the forward declare of RaiseException.
llvm-svn: 228633
This commit is contained in:
parent
34e7590e0d
commit
6e82ddc5b4
|
@ -287,14 +287,6 @@
|
||||||
/// which causes the program to exit abnormally.
|
/// which causes the program to exit abnormally.
|
||||||
#if __has_builtin(__builtin_trap) || LLVM_GNUC_PREREQ(4, 3, 0)
|
#if __has_builtin(__builtin_trap) || LLVM_GNUC_PREREQ(4, 3, 0)
|
||||||
# define LLVM_BUILTIN_TRAP __builtin_trap()
|
# define LLVM_BUILTIN_TRAP __builtin_trap()
|
||||||
#elif defined(LLVM_ON_WIN32)
|
|
||||||
extern "C" __declspec(dllimport) void __stdcall RaiseException(
|
|
||||||
unsigned long, unsigned long, unsigned long, const unsigned long *);
|
|
||||||
#define LLVM_BUILTIN_TRAP \
|
|
||||||
do { \
|
|
||||||
::RaiseException(0xDEADD0D0, 0x1 /*EXCEPTION_NONCONTINUABLE*/, 0, nullptr);\
|
|
||||||
__assume(false); \
|
|
||||||
} while (0)
|
|
||||||
#else
|
#else
|
||||||
# define LLVM_BUILTIN_TRAP *(volatile int*)0x11 = 0
|
# define LLVM_BUILTIN_TRAP *(volatile int*)0x11 = 0
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue