From: Leslie Zhai Date: Wed, 13 Nov 2019 11:07:00 +0000 (+0800) Subject: [interpreter] Fix error: use of undeclared identifier 'g_pExecuteBackoutCodeHelperMet... X-Git-Tag: submit/tizen/20210909.063632~11030^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfc34dcffc12b79cfdf4927baf8a6a4d684fb8c3;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [interpreter] Fix error: use of undeclared identifier 'g_pExecuteBackoutCodeHelperMethod' (dotnet/coreclr#27850) https://github.com/dotnet/coreclr/issues/27848 Commit migrated from https://github.com/dotnet/coreclr/commit/25343654668bfa83a280a4b2eec0e6d71c3aa55e --- diff --git a/src/coreclr/src/vm/interpreter.cpp b/src/coreclr/src/vm/interpreter.cpp index 360332f..fa3ee52 100644 --- a/src/coreclr/src/vm/interpreter.cpp +++ b/src/coreclr/src/vm/interpreter.cpp @@ -10210,7 +10210,7 @@ void Interpreter::CallI() } else { - pMD = g_pExecuteBackoutCodeHelperMethod; // A random static method. + pMD = MscorlibBinder::GetMethod(METHOD__INTERLOCKED__COMPARE_EXCHANGE_OBJECT); // A random static method. } MethodDescCallSite mdcs(pMD, &mSig, ftnPtr); #if 0