Handle MovRelocatableImmediate on ARM32 as a special case (IF_T2_N3) (#19013)
[platform/upstream/coreclr.git] / src / jit / emitarm64.cpp
index fed3b5d..f0955f5 100644 (file)
@@ -10258,27 +10258,6 @@ void emitter::emitDispInst(instruction ins)
 
 /*****************************************************************************
  *
- *  Display an reloc value
- *  If we are formatting for an assembly listing don't print the hex value
- *  since it will prevent us from doing assembly diffs
- */
-void emitter::emitDispReloc(int value, bool addComma)
-{
-    if (emitComp->opts.disAsm)
-    {
-        printf("(reloc)");
-    }
-    else
-    {
-        printf("(reloc 0x%x)", dspPtr(value));
-    }
-
-    if (addComma)
-        printf(", ");
-}
-
-/*****************************************************************************
- *
  *  Display an immediate value
  */
 void emitter::emitDispImm(ssize_t imm, bool addComma, bool alwaysHex /* =false */)