From 1288ca5b05d84dee01b1612d93cb1a04ecc2c727 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Wed, 14 Sep 2016 13:18:06 -0700 Subject: Address PR feedback. --- src/jit/gtlist.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/jit/gtlist.h') diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h index 15ab9333b3..da8246d20e 100644 --- a/src/jit/gtlist.h +++ b/src/jit/gtlist.h @@ -189,6 +189,9 @@ GTNODE(SIMD , "simd" ,0,GTK_BINOP|GTK_EXOP) // SIMD functions/oper // Other nodes that look like unary/binary operators: //----------------------------------------------------------------------------- +// The following are both conditional branches. GT_JTRUE has a single operand that computes a condition. GT_JCC +// implicitly reads the condition bits from a previous operation. The latter is allowed only in the LIR form +// used in the RyuJIT backend. GTNODE(JTRUE , "jmpTrue" ,0,GTK_UNOP|GTK_NOVALUE) GTNODE(JCC , "jcc" ,0,GTK_LEAF|GTK_NOVALUE) -- cgit v1.2.3