Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2021-06-09 00:32:45 +0300
committerGitHub <noreply@github.com>2021-06-09 00:32:45 +0300
commitd35882aece16fedf8c2b0538a8fa5a6e46b28dab (patch)
treed6392c37f5c6f854f5ad5bb4d77cad4c13613ed3 /src/coreclr/gc
parente42c8965072aaed9ec3d2fa8d41cf2b0393d05f4 (diff)
Remove an erroneous check (#53889)
Diffstat (limited to 'src/coreclr/gc')
-rw-r--r--src/coreclr/gc/gc.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/coreclr/gc/gc.cpp b/src/coreclr/gc/gc.cpp
index 556ea0f22ad..3636e341931 100644
--- a/src/coreclr/gc/gc.cpp
+++ b/src/coreclr/gc/gc.cpp
@@ -28669,11 +28669,6 @@ heap_segment* gc_heap::relocate_advance_to_non_sip (heap_segment* region)
{
dprintf (4444, ("SIP %Ix(%Ix)->%Ix->%Ix(%Ix)",
x, (uint8_t*)pval, child, *pval, method_table (child)));
-
- if (method_table (child) == 0)
- {
- FATAL_GC_ERROR();
- }
}
});
}