summaryrefslogtreecommitdiff
path: root/src/jit/flowgraph.cpp
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-06-25 21:07:31 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-06-25 21:07:31 -0700
commit6ed517a7e5912f34787cab70f2f74082ecfdbba1 (patch)
tree8a7ed5468890b832937831f20ee3ce48abad99a2 /src/jit/flowgraph.cpp
parent8e958879ebadab7760c8368e070d34f3b7cf6950 (diff)
downloadcoreclr-6ed517a7e5912f34787cab70f2f74082ecfdbba1.tar.gz
coreclr-6ed517a7e5912f34787cab70f2f74082ecfdbba1.tar.bz2
coreclr-6ed517a7e5912f34787cab70f2f74082ecfdbba1.zip
Refactor debug-only GenTree flags.
Move the four debug-only GenTree flags into their own field. This frees up two bits across both the RyuJIT and the legacy backend.
Diffstat (limited to 'src/jit/flowgraph.cpp')
-rw-r--r--src/jit/flowgraph.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jit/flowgraph.cpp b/src/jit/flowgraph.cpp
index 7d1d5169bd..8c2be6b2f0 100644
--- a/src/jit/flowgraph.cpp
+++ b/src/jit/flowgraph.cpp
@@ -20590,7 +20590,7 @@ void Compiler::fgDebugCheckFlags(GenTreePtr tree)
{
// Print the tree so we can see it in the log.
printf("Missing flags on tree [%X]: ", tree);
- GenTree::gtDispFlags(chkFlags & ~treeFlags);
+ GenTree::gtDispFlags(chkFlags & ~treeFlags, 0);
printf("\n");
gtDispTree(tree);
@@ -20598,7 +20598,7 @@ void Compiler::fgDebugCheckFlags(GenTreePtr tree)
// Print the tree again so we can see it right after we hook up the debugger.
printf("Missing flags on tree [%X]: ", tree);
- GenTree::gtDispFlags(chkFlags & ~treeFlags);
+ GenTree::gtDispFlags(chkFlags & ~treeFlags, 0);
printf("\n");
gtDispTree(tree);
}
@@ -20617,7 +20617,7 @@ void Compiler::fgDebugCheckFlags(GenTreePtr tree)
{
// Print the tree so we can see it in the log.
printf("Extra GTF_CALL flags on parent tree [%X]: ", tree);
- GenTree::gtDispFlags(treeFlags & ~chkFlags);
+ GenTree::gtDispFlags(treeFlags & ~chkFlags, 0);
printf("\n");
gtDispTree(tree);
@@ -20625,7 +20625,7 @@ void Compiler::fgDebugCheckFlags(GenTreePtr tree)
// Print the tree again so we can see it right after we hook up the debugger.
printf("Extra GTF_CALL flags on parent tree [%X]: ", tree);
- GenTree::gtDispFlags(treeFlags & ~chkFlags);
+ GenTree::gtDispFlags(treeFlags & ~chkFlags, 0);
printf("\n");
gtDispTree(tree);
}