summaryrefslogtreecommitdiff
path: root/src/jit/flowgraph.cpp
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2017-12-22 13:15:41 -0800
committerGitHub <noreply@github.com>2017-12-22 13:15:41 -0800
commitd7d457f11cf553e46aab1da225be83e73fc783e8 (patch)
tree4ee77753992719344a474a99be058ee528c26b74 /src/jit/flowgraph.cpp
parent9442717a9455847912a18fd174909a5c8c253334 (diff)
downloadcoreclr-d7d457f11cf553e46aab1da225be83e73fc783e8.tar.gz
coreclr-d7d457f11cf553e46aab1da225be83e73fc783e8.tar.bz2
coreclr-d7d457f11cf553e46aab1da225be83e73fc783e8.zip
Small changes around stack levels. (#15616)
* add ifdef for fgThrowHlpBlkStkLevel * fgFindExcptnTarget should not be called fof dbg code compilation mode.
Diffstat (limited to 'src/jit/flowgraph.cpp')
-rw-r--r--src/jit/flowgraph.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jit/flowgraph.cpp b/src/jit/flowgraph.cpp
index b6ae5c0dbb..7dbf463f48 100644
--- a/src/jit/flowgraph.cpp
+++ b/src/jit/flowgraph.cpp
@@ -18393,6 +18393,7 @@ BasicBlock* Compiler::fgAddCodeRef(BasicBlock* srcBlk, unsigned refData, Special
Compiler::AddCodeDsc* Compiler::fgFindExcptnTarget(SpecialCodeKind kind, unsigned refData)
{
+ assert(!opts.compDbgCode);
if (!(fgExcptnTargetCache[kind] && // Try the cached value first
fgExcptnTargetCache[kind]->acdData == refData))
{