From: Jonghyun Park Date: Mon, 27 Feb 2017 04:09:10 +0000 (+0900) Subject: [x86/Linux] Use _X86_ instead of _TARGET_X86_ (dotnet/coreclr#9816) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7941 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c6188a7e73863fee1e0ede26c38edd08ae2e963;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [x86/Linux] Use _X86_ instead of _TARGET_X86_ (dotnet/coreclr#9816) Commit migrated from https://github.com/dotnet/coreclr/commit/dbb1ae49988642015eac970330797ae56eea983b --- 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); }