summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorPeter Kukol <pkukol@users.noreply.github.com>2016-09-20 18:59:34 -0700
committerGitHub <noreply@github.com>2016-09-20 18:59:34 -0700
commit171962f54145236ab354f64961b2174f404d605f (patch)
tree3f5a50180e3bc866f891b59eb4050386062c4656 /src/jit/gtlist.h
parent389474470052273a67942da042a2476f0cab7deb (diff)
downloadcoreclr-171962f54145236ab354f64961b2174f404d605f.tar.gz
coreclr-171962f54145236ab354f64961b2174f404d605f.tar.bz2
coreclr-171962f54145236ab354f64961b2174f404d605f.zip
Clean up GenTree node size dumping code. (#7278)
Clean up GenTreeXxxx struct size dump; fix 32-bit build when MEASURE_NODE_SIZE is enabled.
Diffstat (limited to 'src/jit/gtlist.h')
-rw-r--r--src/jit/gtlist.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index edd246d328..a330a6bb37 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -247,7 +247,9 @@ GTNODE(PHI_ARG , "phiArg" ,GenTreePhiArg ,0,GTK_LEAF|GTK_LOC
// Nodes used by Lower to generate a closer CPU representation of other nodes
//-----------------------------------------------------------------------------
+#ifndef LEGACY_BACKEND
GTNODE(JMPTABLE , "jumpTable" ,GenTreeJumpTable ,0, GTK_LEAF) // Generates the jump table for switches
+#endif
GTNODE(SWITCH_TABLE , "tableSwitch" ,GenTreeOp ,0, GTK_BINOP|GTK_NOVALUE) // Jump Table based switch construct
//-----------------------------------------------------------------------------