summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2016-07-06 20:23:42 +0300
committerMike Danes <onemihaid@hotmail.com>2016-07-06 20:23:42 +0300
commit77f1603b268452bc49ccd69ae8930e5e5357ca39 (patch)
treec09edd58b9820f00fba3e3724ede22990adc2448 /src/jit/gtlist.h
parentc92870088bbb38c843751bb571198430a0e555ec (diff)
downloadcoreclr-77f1603b268452bc49ccd69ae8930e5e5357ca39.tar.gz
coreclr-77f1603b268452bc49ccd69ae8930e5e5357ca39.tar.bz2
coreclr-77f1603b268452bc49ccd69ae8930e5e5357ca39.zip
Introduce GT_ADD_LO and GT_SUB_LO
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 8248b532b9..ee33797234 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -153,7 +153,9 @@ GTNODE(LONG , "gt_long" ,0,GTK_BINOP)
// The following are nodes representing the upper half of a 64-bit operation
// that requires a carry/borrow. However, they are all named GT_XXX_HI for
// consistency.
+GTNODE(ADD_LO , "+Lo" ,1,GTK_BINOP)
GTNODE(ADD_HI , "+Hi" ,1,GTK_BINOP)
+GTNODE(SUB_LO , "-Lo" ,0,GTK_BINOP)
GTNODE(SUB_HI , "-Hi" ,0,GTK_BINOP)
GTNODE(MUL_HI , "*Hi" ,1,GTK_BINOP)
GTNODE(DIV_HI , "/Hi" ,0,GTK_BINOP)