Fix jit build break (#32927)
authorAndy Ayers <andya@microsoft.com>
Thu, 27 Feb 2020 20:40:59 +0000 (12:40 -0800)
committerGitHub <noreply@github.com>
Thu, 27 Feb 2020 20:40:59 +0000 (12:40 -0800)
Two changes to codegencommon.cpp were merged in short order, and
git/github did not spot the merge conflict.

Fixes #32926.

src/coreclr/src/jit/codegencommon.cpp

index 7da93af..2de0553 100644 (file)
@@ -11304,11 +11304,11 @@ void CodeGenInterface::VariableLiveKeeper::VariableLiveRange::dumpVariableLiveRa
 {
     codeGen->dumpSiVarLoc(&m_VarLocation);
     printf(" [ ");
-    m_StartEmitLocation.Print();
+    m_StartEmitLocation.Print(codeGen->GetCompiler()->compMethodID);
     printf(", ");
     if (m_EndEmitLocation.Valid())
     {
-        m_EndEmitLocation.Print();
+        m_EndEmitLocation.Print(codeGen->GetCompiler()->compMethodID);
     }
     else
     {