summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/debug/ee/functioninfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/functioninfo.cpp b/src/debug/ee/functioninfo.cpp
index 56c07267a7..795e86dc95 100644
--- a/src/debug/ee/functioninfo.cpp
+++ b/src/debug/ee/functioninfo.cpp
@@ -1559,7 +1559,6 @@ DebuggerJitInfo *DebuggerMethodInfo::FindOrCreateInitAndAddJitInfo(MethodDesc* f
CONTRACTL_END;
_ASSERTE(fd != NULL);
- ARM_ONLY(_ASSERTE((startAddr & THUMB_CODE) == 1));
// The debugger doesn't track Lightweight-codegen methods b/c they have no metadata.
if (fd->IsDynamicMethod())
@@ -1587,6 +1586,7 @@ DebuggerJitInfo *DebuggerMethodInfo::FindOrCreateInitAndAddJitInfo(MethodDesc* f
//
// We haven't got the lock yet so we'll repeat this lookup once
// we've taken the lock.
+ ARM_ONLY(_ASSERTE((startAddr & THUMB_CODE) == 1));
DebuggerJitInfo * pResult = FindJitInfo(fd, startAddr);
if (pResult != NULL)
{