summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sienkiewicz <chsienki@microsoft.com>2018-05-29 12:01:37 -0700
committerGleb Balykov <g.balykov@samsung.com>2018-09-18 15:49:14 +0300
commitafe1ffead4ef5cf922138d9dd62c45df3ba06d97 (patch)
tree99a59754ba747ed77d7a8875c57cd587c5598a04
parent0497e489bf37ad0e5179a9a0e0ffaf7ee422b7e2 (diff)
downloadcoreclr-afe1ffead4ef5cf922138d9dd62c45df3ba06d97.tar.gz
coreclr-afe1ffead4ef5cf922138d9dd62c45df3ba06d97.tar.bz2
coreclr-afe1ffead4ef5cf922138d9dd62c45df3ba06d97.zip
Add missing semicolon
-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 c33905ef63..56c07267a7 100644
--- a/src/debug/ee/functioninfo.cpp
+++ b/src/debug/ee/functioninfo.cpp
@@ -1559,7 +1559,7 @@ DebuggerJitInfo *DebuggerMethodInfo::FindOrCreateInitAndAddJitInfo(MethodDesc* f
CONTRACTL_END;
_ASSERTE(fd != NULL);
- ARM_ONLY(_ASSERTE((startAddr & THUMB_CODE) == 1))
+ ARM_ONLY(_ASSERTE((startAddr & THUMB_CODE) == 1));
// The debugger doesn't track Lightweight-codegen methods b/c they have no metadata.
if (fd->IsDynamicMethod())