From 7a785420a57925d1ea67fa9361e1f826a7e74f2b Mon Sep 17 00:00:00 2001 From: Sergey Andreenko Date: Fri, 5 Jan 2018 14:41:40 -0800 Subject: [PATCH] fix COMPlus_JitHalt for arm32. (#15761) --- src/jit/compiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jit/compiler.cpp b/src/jit/compiler.cpp index 68bd8bf..b6a2771 100644 --- a/src/jit/compiler.cpp +++ b/src/jit/compiler.cpp @@ -5782,8 +5782,8 @@ void Compiler::compCompileFinish() { if (compJitHaltMethod()) { -#if !defined(_TARGET_ARM64_) && !defined(_HOST_UNIX_) - // TODO-ARM64-NYI: re-enable this when we have an OS that supports a pop-up dialog +#if !defined(_TARGET_ARMARCH_) && !defined(_HOST_UNIX_) + // TODO-ARM-NYI: re-enable this when we have an OS that supports a pop-up dialog // Don't do an assert, but just put up the dialog box so we get just-in-time debugger // launching. When you hit 'retry' it will continue and naturally stop at the INT 3 -- 2.7.4