projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef468f2
)
[x86/Linux] Use _X86_ instead of _TARGET_X86_ (#9816)
author
Jonghyun Park
<parjong@gmail.com>
Mon, 27 Feb 2017 04:09:10 +0000
(13:09 +0900)
committer
Jan Kotas
<jkotas@microsoft.com>
Mon, 27 Feb 2017 04:09:10 +0000
(20:09 -0800)
src/pal/src/exception/seh.cpp
patch
|
blob
|
history
diff --git
a/src/pal/src/exception/seh.cpp
b/src/pal/src/exception/seh.cpp
index bc74ccc9378944383b825a2bc204a19cfee5a00f..2907137472cd9f2e3383c1d54ecb70a58f4a56ab 100644
(file)
--- a/
src/pal/src/exception/seh.cpp
+++ b/
src/pal/src/exception/seh.cpp
@@
-226,11
+226,11
@@
Parameters:
PAL_SEHException* ex - the exception to throw.
--*/
extern "C"
-#ifdef _
TARGET_
X86_
+#ifdef _X86_
void __fastcall ThrowExceptionHelper(PAL_SEHException* ex)
-#else // _
TARGET_
X86_
+#else // _X86_
void ThrowExceptionHelper(PAL_SEHException* ex)
-#endif // !_
TARGET_
X86_
+#endif // !_X86_
{
throw std::move(*ex);
}