From 2a6d6e26105dbe223015b98788fdfd12311dfc6d Mon Sep 17 00:00:00 2001 From: Egor Chesakov Date: Wed, 22 Aug 2018 22:25:08 -0700 Subject: [PATCH] Call idSetRelocFlags in emitIns_R_L only if opts.compReloc src/jit/emitarm.cpp --- src/jit/emitarm.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/jit/emitarm.cpp b/src/jit/emitarm.cpp index 2a4c06f..b1b263b 100644 --- a/src/jit/emitarm.cpp +++ b/src/jit/emitarm.cpp @@ -4290,9 +4290,12 @@ void emitter::emitIns_R_L(instruction ins, emitAttr attr, BasicBlock* dst, regNu id->idjNext = emitCurIGjmpList; emitCurIGjmpList = id; - // Set the relocation flags - these give hint to zap to perform - // relocation of the specified 32bit address. - id->idSetRelocFlags(attr); + if (emitComp->opts.compReloc) + { + // Set the relocation flags - these give hint to zap to perform + // relocation of the specified 32bit address. + id->idSetRelocFlags(attr); + } #if EMITTER_STATS emitTotalIGjmps++; -- 2.7.4