projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7741851
)
Changing the status code generated by LLVM_BUILTIN_TRAP on Windows to be something...
author
Aaron Ballman
<aaron@aaronballman.com>
Tue, 10 Feb 2015 20:13:52 +0000
(20:13 +0000)
committer
Aaron Ballman
<aaron@aaronballman.com>
Tue, 10 Feb 2015 20:13:52 +0000
(20:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228738
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/Compiler.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/Compiler.h
b/include/llvm/Support/Compiler.h
index 536f02ff5b8ba146f444327dac97bbcd744279d5..e0a4e1fc18ead092aec12d747c49180a30fe7cb2 100644
(file)
--- a/
include/llvm/Support/Compiler.h
+++ b/
include/llvm/Support/Compiler.h
@@
-297,7
+297,7
@@
extern "C" __declspec(dllimport) void __stdcall RaiseException(
#endif
# define LLVM_BUILTIN_TRAP \
do { \
- ::RaiseException(0x
DEADD0D0
, 0x1 /*EXCEPTION_NONCONTINUABLE*/, 0, nullptr);\
+ ::RaiseException(0x
8000DEAD
, 0x1 /*EXCEPTION_NONCONTINUABLE*/, 0, nullptr);\
__assume(false); \
} while (0)
#else