[x86/Linux] Use _X86_ instead of _TARGET_X86_ (dotnet/coreclr#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)
Commit migrated from https://github.com/dotnet/coreclr/commit/dbb1ae49988642015eac970330797ae56eea983b

src/coreclr/src/pal/src/exception/seh.cpp

index bc74ccc..2907137 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);
 }