summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-06-05 11:52:47 -0700
committerGitHub <noreply@github.com>2019-06-05 11:52:47 -0700
commitd7e49efa6b41afb2b7a9ee3adc8f0850b968562a (patch)
treec7a534aa702faf1b188d6fe54f1cab98f3efbdd4 /src/jit/gtlist.h
parent5593c816a36784373cddeee748bd7d67e40bd611 (diff)
downloadcoreclr-d7e49efa6b41afb2b7a9ee3adc8f0850b968562a.tar.gz
coreclr-d7e49efa6b41afb2b7a9ee3adc8f0850b968562a.tar.bz2
coreclr-d7e49efa6b41afb2b7a9ee3adc8f0850b968562a.zip
Small fixes around AST nodes. (#24957)
* Fix MEASURE_NODE_SIZE and naming mistakes. * The additional fields were deleted in #14582 (~1.5 years ago). * Fix GT_INDEX_ADDR def. We created them as `new (this, GT_INDEX_ADDR) GenTreeIndexAddr` but used smaller `GenTreeIndex` as nessecary size. * Use LargeOpOpcode instead of GT_CALL.
Diffstat (limited to 'src/jit/gtlist.h')
-rw-r--r--src/jit/gtlist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index c46bfefd72..48a585514f 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -155,8 +155,8 @@ GTNODE(QMARK , GenTreeQmark ,0,(GTK_BINOP|GTK_EXOP|GTK_NOTLIR))
GTNODE(COLON , GenTreeColon ,0,(GTK_BINOP|GTK_NOTLIR))
GTNODE(INDEX , GenTreeIndex ,0,(GTK_BINOP|GTK_EXOP|GTK_NOTLIR)) // SZ-array-element
-GTNODE(INDEX_ADDR , GenTreeIndex ,0,(GTK_BINOP|GTK_EXOP)) // addr of SZ-array-element; used when
- // aiming to minimize compile times.
+GTNODE(INDEX_ADDR , GenTreeIndexAddr ,0,(GTK_BINOP|GTK_EXOP)) // addr of SZ-array-element;
+ // used when aiming to minimize compile times.
GTNODE(MKREFANY , GenTreeOp ,0,GTK_BINOP)
@@ -273,7 +273,7 @@ GTNODE(PHI_ARG , GenTreePhiArg ,0,(GTK_LEAF|GTK_LOCAL)) // phi
// Nodes used by Lower to generate a closer CPU representation of other nodes
//-----------------------------------------------------------------------------
-GTNODE(JMPTABLE , GenTreeJumpTable ,0, (GTK_LEAF|GTK_NOCONTAIN)) // Generates the jump table for switches
+GTNODE(JMPTABLE , GenTree ,0, (GTK_LEAF|GTK_NOCONTAIN)) // Generates the jump table for switches
GTNODE(SWITCH_TABLE , GenTreeOp ,0, (GTK_BINOP|GTK_NOVALUE)) // Jump Table based switch construct
//-----------------------------------------------------------------------------