From 8c6188a7e73863fee1e0ede26c38edd08ae2e963 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Mon, 27 Feb 2017 13:09:10 +0900 Subject: [PATCH] [x86/Linux] Use _X86_ instead of _TARGET_X86_ (dotnet/coreclr#9816) Commit migrated from https://github.com/dotnet/coreclr/commit/dbb1ae49988642015eac970330797ae56eea983b --- src/coreclr/src/pal/src/exception/seh.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr/src/pal/src/exception/seh.cpp b/src/coreclr/src/pal/src/exception/seh.cpp index bc74ccc..2907137 100644 --- a/src/coreclr/src/pal/src/exception/seh.cpp +++ b/src/coreclr/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); } -- 2.7.4