summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Artemev <rartemev@microsoft.com>2017-07-31 17:16:37 -0700
committerGitHub <noreply@github.com>2017-07-31 17:16:37 -0700
commit4b49e4330441db903e6a5b6efab3e1dbb5b64ff3 (patch)
tree57d261dc07922f528289cea018c720f6c455836c
parentdcf529dce92966b17e316d96bcbf3f779d974c12 (diff)
parentce6b460770e24556ae54d04a20d01f79961996c0 (diff)
downloadcoreclr-4b49e4330441db903e6a5b6efab3e1dbb5b64ff3.tar.gz
coreclr-4b49e4330441db903e6a5b6efab3e1dbb5b64ff3.tar.bz2
coreclr-4b49e4330441db903e6a5b6efab3e1dbb5b64ff3.zip
Merge pull request #13132 from rartemev/legbnd_fix_misprint
Fixed misprint in legacy backend that led to assert failure
-rw-r--r--src/jit/codegenlegacy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/codegenlegacy.cpp b/src/jit/codegenlegacy.cpp
index bb2a4156ca..ea475ccebd 100644
--- a/src/jit/codegenlegacy.cpp
+++ b/src/jit/codegenlegacy.cpp
@@ -19067,7 +19067,7 @@ regMaskTP CodeGen::genCodeForCall(GenTreeCall* call, bool valUsed)
CORINFO_CONST_LOOKUP lookup;
compiler->info.compCompHnd->getAddressOfPInvokeTarget(methHnd, &lookup);
- void* addr = lookup.addr;
+ addr = lookup.addr;
assert(addr != NULL);