[x86/Linux] Use _X86_ instead of _TARGET_X86_ (#9816)
authorJonghyun Park <parjong@gmail.com>
Mon, 27 Feb 2017 04:09:10 +0000 (13:09 +0900)
committerJan Kotas <jkotas@microsoft.com>
Mon, 27 Feb 2017 04:09:10 +0000 (20:09 -0800)
src/pal/src/exception/seh.cpp

index bc74ccc9378944383b825a2bc204a19cfee5a00f..2907137472cd9f2e3383c1d54ecb70a58f4a56ab 100644 (file)
@@ -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);
 }