summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2016-09-01 21:27:46 -0700
committerCarol Eidt <carol.eidt@microsoft.com>2016-09-01 21:27:46 -0700
commite21aeafc31927708972ea301b2155f8313925f04 (patch)
tree05d8f6540ccbce21b000aa2bcf736d6b2b55b93d /src/jit/gtlist.h
parentf71493a5ad04ec2579052afcc606ee5e62f5a3b8 (diff)
downloadcoreclr-e21aeafc31927708972ea301b2155f8313925f04.tar.gz
coreclr-e21aeafc31927708972ea301b2155f8313925f04.tar.bz2
coreclr-e21aeafc31927708972ea301b2155f8313925f04.zip
More PR Feedback
Diffstat (limited to 'src/jit/gtlist.h')
-rw-r--r--src/jit/gtlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index bc8e65aced..a03bcfe4b0 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -75,9 +75,9 @@ GTNODE(STOREIND , "storeIndir" ,0,GTK_BINOP|GTK_NOVALUE) // store ind
// TODO-Cleanup: GT_ARR_BOUNDS_CHECK should be made a GTK_BINOP now that it has only two child nodes
GTNODE(ARR_BOUNDS_CHECK , "arrBndsChk" ,0,GTK_SPECIAL|GTK_NOVALUE) // array bounds check
-GTNODE(OBJ , "obj" ,0,GTK_BINOP|GTK_EXOP) // Object that MAY have gc pointers, and thus includes the relevant gc layout info.
+GTNODE(OBJ , "obj" ,0,GTK_UNOP|GTK_EXOP) // Object that MAY have gc pointers, and thus includes the relevant gc layout info.
GTNODE(STORE_OBJ , "storeObj" ,0,GTK_BINOP|GTK_EXOP|GTK_NOVALUE) // Object that MAY have gc pointers, and thus includes the relevant gc layout info.
-GTNODE(BLK , "blk" ,0,GTK_BINOP) // Block/object with no gc pointers, and with a known size (e.g. a struct with no gc fields)
+GTNODE(BLK , "blk" ,0,GTK_UNOP) // Block/object with no gc pointers, and with a known size (e.g. a struct with no gc fields)
GTNODE(STORE_BLK , "storeBlk" ,0,GTK_BINOP|GTK_NOVALUE) // Block/object with no gc pointers, and with a known size (e.g. a struct with no gc fields)
GTNODE(DYN_BLK , "DynBlk" ,0,GTK_SPECIAL) // Dynamically sized block object
GTNODE(STORE_DYN_BLK , "storeDynBlk" ,0,GTK_SPECIAL|GTK_NOVALUE) // Dynamically sized block object