summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2018-11-03 00:11:57 +0200
committerMike Danes <onemihaid@hotmail.com>2018-11-03 09:44:36 +0200
commit3d4b3375b5fb943f1bfddb88dc8baa840bd32420 (patch)
tree9a0a1966261838e3036ccd27f95c280fb9e91424 /src/jit/gtlist.h
parentd10a43375ef9086034cc64dce114b70f801321e8 (diff)
downloadcoreclr-3d4b3375b5fb943f1bfddb88dc8baa840bd32420.tar.gz
coreclr-3d4b3375b5fb943f1bfddb88dc8baa840bd32420.tar.bz2
coreclr-3d4b3375b5fb943f1bfddb88dc8baa840bd32420.zip
Delete GenTreeLabel
This is only used to hold a pointer to a BasicBlock for GenTreeBoundsChk and GenTreeIndexAddr. This doesn't serve any purpose and it does not behave like a real operand (e.g. it's not included in the linear order).
Diffstat (limited to 'src/jit/gtlist.h')
-rw-r--r--src/jit/gtlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index 9fd12753fb..663428c5aa 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -27,7 +27,7 @@ GTNODE(LCL_FLD_ADDR , GenTreeLclFld ,0,GTK_LEAF) // addre
GTNODE(STORE_LCL_VAR , GenTreeLclVar ,0,GTK_UNOP|GTK_LOCAL|GTK_NOVALUE) // store to local variable
GTNODE(STORE_LCL_FLD , GenTreeLclFld ,0,GTK_UNOP|GTK_LOCAL|GTK_NOVALUE) // store to field in a non-primitive variable
GTNODE(CATCH_ARG , GenTree ,0,GTK_LEAF) // Exception object in a catch block
-GTNODE(LABEL , GenTreeLabel ,0,GTK_LEAF) // Jump-target
+GTNODE(LABEL , GenTree ,0,GTK_LEAF) // Jump-target
GTNODE(FTN_ADDR , GenTreeFptrVal ,0,GTK_LEAF) // Address of a function
GTNODE(RET_EXPR , GenTreeRetExpr ,0,GTK_LEAF) // Place holder for the return expression from an inline candidate