summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2016-03-24 13:29:39 -0700
committerCarol Eidt <carol.eidt@microsoft.com>2016-03-25 16:09:57 -0700
commit3789f42252a2faf577f90841fb944256c637b4f2 (patch)
tree37be4fcb9ba8ce8fb37154c58043ccd70d767605 /src/jit/gtlist.h
parent5950613eff6684b20af4b49ee7a75e3951c3666e (diff)
downloadcoreclr-3789f42252a2faf577f90841fb944256c637b4f2.tar.gz
coreclr-3789f42252a2faf577f90841fb944256c637b4f2.tar.bz2
coreclr-3789f42252a2faf577f90841fb944256c637b4f2.zip
1stClassStructs: Replace GT_LDOBJ with GT_OBJ
In preparation for using block nodes in assignments, change GT_LDOBJ to GT_OBJ. Also, eliminate gtFldTreeList, which was only being used in a transitory fashion for x87 codegen - instead create the nodes on the fly as needed for stack fp codegen. Additional minor cleanup.
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 365c8e322a..4eee84031b 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -73,7 +73,7 @@ GTNODE(IND , "indir" ,0,GTK_UNOP) // load indirect
GTNODE(STOREIND , "storeIndir" ,0,GTK_BINOP) // store indirection
// 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) // array bounds check
-GTNODE(LDOBJ , "ldobj" ,0,GTK_UNOP|GTK_EXOP)
+GTNODE(OBJ , "obj" ,0,GTK_UNOP|GTK_EXOP)
GTNODE(BOX , "box" ,0,GTK_UNOP|GTK_EXOP)
#ifdef FEATURE_SIMD