summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@users.noreply.github.com>2019-06-03 19:07:06 -0700
committerGitHub <noreply@github.com>2019-06-03 19:07:06 -0700
commitebf3370498ddee49d921227c038418ae84dc351e (patch)
treefcb449f008fd352a54f35536551ea3b4550886f8
parent4638845251f0ea0a6d222b645e2d04a406dc4ab6 (diff)
downloadcoreclr-ebf3370498ddee49d921227c038418ae84dc351e.tar.gz
coreclr-ebf3370498ddee49d921227c038418ae84dc351e.tar.bz2
coreclr-ebf3370498ddee49d921227c038418ae84dc351e.zip
Remove some event trace asserts that can fail if tracing is stopped at a particular point (#24897)
-rw-r--r--src/vm/eventtrace.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vm/eventtrace.cpp b/src/vm/eventtrace.cpp
index cd110eca34..8489fff559 100644
--- a/src/vm/eventtrace.cpp
+++ b/src/vm/eventtrace.cpp
@@ -7436,7 +7436,6 @@ void ETW::CompilationLog::TieredCompilation::Runtime::SendSettings()
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
UINT32 flags;
@@ -7451,7 +7450,6 @@ void ETW::CompilationLog::TieredCompilation::Rundown::SendSettings()
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
UINT32 flags;
@@ -7466,7 +7464,6 @@ void ETW::CompilationLog::TieredCompilation::Runtime::SendPause()
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
FireEtwTieredCompilationPause(GetClrInstanceId());
@@ -7478,7 +7475,6 @@ void ETW::CompilationLog::TieredCompilation::Runtime::SendResume(UINT32 newMetho
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
FireEtwTieredCompilationResume(GetClrInstanceId(), newMethodCount);
@@ -7490,7 +7486,6 @@ void ETW::CompilationLog::TieredCompilation::Runtime::SendBackgroundJitStart(UIN
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
FireEtwTieredCompilationBackgroundJitStart(GetClrInstanceId(), pendingMethodCount);
@@ -7502,7 +7497,6 @@ void ETW::CompilationLog::TieredCompilation::Runtime::SendBackgroundJitStop(UINT
NOTHROW;
GC_NOTRIGGER;
} CONTRACTL_END;
- _ASSERTE(IsEnabled());
_ASSERTE(g_pConfig->TieredCompilation());
FireEtwTieredCompilationBackgroundJitStop(GetClrInstanceId(), pendingMethodCount, jittedMethodCount);