From 9bed8735d138e244ca340d7df1253ba6dac4c629 Mon Sep 17 00:00:00 2001 From: Mike Danes Date: Sat, 17 Dec 2016 20:49:50 +0200 Subject: Add GT_TEST_EQ and GT_TEST_NE --- src/jit/gtlist.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/jit/gtlist.h') diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h index 707ae61215..fb6d8e891f 100644 --- a/src/jit/gtlist.h +++ b/src/jit/gtlist.h @@ -145,6 +145,10 @@ GTNODE(LT , "<" ,GenTreeOp ,0,GTK_BINOP|GTK_RE GTNODE(LE , "<=" ,GenTreeOp ,0,GTK_BINOP|GTK_RELOP) GTNODE(GE , ">=" ,GenTreeOp ,0,GTK_BINOP|GTK_RELOP) GTNODE(GT , ">" ,GenTreeOp ,0,GTK_BINOP|GTK_RELOP) +#ifndef LEGACY_BACKEND +GTNODE(TEST_EQ , "testEQ" ,GenTreeOp ,0,GTK_BINOP|GTK_RELOP) +GTNODE(TEST_NE , "testNE" ,GenTreeOp ,0,GTK_BINOP|GTK_RELOP) +#endif GTNODE(COMMA , "comma" ,GenTreeOp ,0,GTK_BINOP|GTK_NOTLIR) -- cgit v1.2.3