summaryrefslogtreecommitdiff
path: root/src/jit/gtlist.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2017-04-29 13:49:20 +0300
committerMike Danes <onemihaid@hotmail.com>2017-09-13 16:05:59 +0300
commit4eec0dfc477b560e5e19e385d2f6ac225c7c35c6 (patch)
tree9d5d5e4aa5b938e70569f636dfc9110023a2edb5 /src/jit/gtlist.h
parent78f26895bf246e16df683c3d9bfdbd5273e749b2 (diff)
downloadcoreclr-4eec0dfc477b560e5e19e385d2f6ac225c7c35c6.tar.gz
coreclr-4eec0dfc477b560e5e19e385d2f6ac225c7c35c6.tar.bz2
coreclr-4eec0dfc477b560e5e19e385d2f6ac225c7c35c6.zip
Add GT_BT
Diffstat (limited to 'src/jit/gtlist.h')
-rw-r--r--src/jit/gtlist.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/jit/gtlist.h b/src/jit/gtlist.h
index 544023391f..314660ff3d 100644
--- a/src/jit/gtlist.h
+++ b/src/jit/gtlist.h
@@ -225,7 +225,10 @@ GTNODE(JCC , GenTreeCC ,0,GTK_LEAF|GTK_NOVALUE) // Check
// by GenTreeCC::gtCondition is true.
GTNODE(SETCC , GenTreeCC ,0,GTK_LEAF) // Checks the condition flags and produces 1 if the condition specified
// by GenTreeCC::gtCondition is true and 0 otherwise.
-
+#ifdef _TARGET_XARCH_
+GTNODE(BT , GenTreeOp ,0,GTK_BINOP|GTK_NOVALUE) // The XARCH BT instruction. Like CMP, this sets the condition flags (CF
+ // to be precise) and does not produce a value.
+#endif
//-----------------------------------------------------------------------------
// Other nodes that look like unary/binary operators:
//-----------------------------------------------------------------------------