summaryrefslogtreecommitdiff
path: root/src/vm/finalizerthread.cpp
diff options
context:
space:
mode:
authorSinan Kaya <41809318+franksinankaya@users.noreply.github.com>2019-02-14 14:06:57 -0500
committerJan Kotas <jkotas@microsoft.com>2019-02-14 11:06:57 -0800
commit36931ac7b24249201547f7ca667105014b2e4c7f (patch)
tree1ad562f7776e57f14a884fadcd17e23911637ec8 /src/vm/finalizerthread.cpp
parent84eaa7ac079e625f2fbe36ba976f735dbdacdc6b (diff)
downloadcoreclr-36931ac7b24249201547f7ca667105014b2e4c7f.tar.gz
coreclr-36931ac7b24249201547f7ca667105014b2e4c7f.tar.bz2
coreclr-36931ac7b24249201547f7ca667105014b2e4c7f.zip
Gnuport cleanup 3 (#22581)
* Reorder extern "C" and visibility statements In file included from coreclr/src/pal/inc/pal.h:70:0, coreclr/src/pal/inc/pal_mstypes.h:30:25: error: expected unqualified-id before string constant #define EXTERN_C extern "C" ^ coreclr/src/pal/inc/rt/palrt.h:216:30: note: in expansion of macro 'EXTERN_C' #define STDAPI_(type) EXTERN_C type STDAPICALLTYPE * Need double quotes around single quotes in error statements fix error statements Can't have ' character in error statement * Abstract __declspec(noinline) Generate compiler independent macros for noinline request. * Remove unused DBG_NOINLINE_X86__RET_INLINE * Abstract __declspec(nothrow)
Diffstat (limited to 'src/vm/finalizerthread.cpp')
-rw-r--r--src/vm/finalizerthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/finalizerthread.cpp b/src/vm/finalizerthread.cpp
index f432571334..0a7569a9b8 100644
--- a/src/vm/finalizerthread.cpp
+++ b/src/vm/finalizerthread.cpp
@@ -59,7 +59,7 @@ BOOL FinalizerThread::HaveExtraWorkForFinalizer()
// This helper is here to avoid EH goo associated with DefineFullyQualifiedNameForStack being
// invoked when logging is off.
-__declspec(noinline)
+NOINLINE
void LogFinalization(Object* obj)
{
STATIC_CONTRACT_NOTHROW;