From 8d0ce825318032656d993a6b517a02f8cef0e16b Mon Sep 17 00:00:00 2001 From: Brian Sullivan Date: Tue, 25 Feb 2020 11:10:33 -0800 Subject: [PATCH] Revert "Proposed fix for #32085" This reverts commit 169c24eeafb072a79ffbdb2d1d36960ebc0c17b4. --- src/coreclr/src/jit/emitxarch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/jit/emitxarch.cpp b/src/coreclr/src/jit/emitxarch.cpp index b175b1415dfa6..22b800ecee4fa 100644 --- a/src/coreclr/src/jit/emitxarch.cpp +++ b/src/coreclr/src/jit/emitxarch.cpp @@ -2835,7 +2835,7 @@ void emitter::emitHandleMemOp(GenTreeIndir* indir, instrDesc* id, insFormat fmt, // Either not generating relocatable code, or addr must be an icon handle, or the // constant is zero (which we won't generate a relocation for). - assert(!emitComp->opts.compReloc || memBase->IsIconHandle() || memBase->IsIntegralConst(0) || memBase->AsIntConCommon()->FitsInAddrBase(emitComp)); + assert(!emitComp->opts.compReloc || memBase->IsIconHandle() || memBase->IsIntegralConst(0)); if (memBase->AsIntConCommon()->AddrNeedsReloc(emitComp)) {