[llvm-commits] CVS: llvm/lib/Target/TargetSelectionDAG.td
Evan Cheng
evan.cheng at apple.com
Mon Dec 19 15:12:51 PST 2005
Changes in directory llvm/lib/Target:
TargetSelectionDAG.td updated: 1.30 -> 1.31
---
Log message:
X86 conditional branch support.
---
Diffs of the changes: (+0 -5)
TargetSelectionDAG.td | 5 -----
1 files changed, 5 deletions(-)
Index: llvm/lib/Target/TargetSelectionDAG.td
diff -u llvm/lib/Target/TargetSelectionDAG.td:1.30 llvm/lib/Target/TargetSelectionDAG.td:1.31
--- llvm/lib/Target/TargetSelectionDAG.td:1.30 Sun Dec 18 01:05:21 2005
+++ llvm/lib/Target/TargetSelectionDAG.td Mon Dec 19 17:12:38 2005
@@ -131,10 +131,6 @@
SDTCisVT<0, OtherVT>
]>;
-def SDTBrCond : SDTypeProfile<0, 2, [ // brcond
- SDTCisInt<0>, SDTCisVT<1, OtherVT>
-]>;
-
def SDTRet : SDTypeProfile<0, 0, []>; // ret
def SDTWritePort : SDTypeProfile<0, 2, [ // writeport
@@ -256,7 +252,6 @@
def selectcc : SDNode<"ISD::SELECT_CC" , SDTSelectCC>;
def br : SDNode<"ISD::BR" , SDTBr, [SDNPHasChain]>;
-def brcond : SDNode<"ISD::BRCOND" , SDTBrCond, [SDNPHasChain]>;
def ret : SDNode<"ISD::RET" , SDTRet, [SDNPHasChain]>;
def writeport : SDNode<"ISD::WRITEPORT" , SDTWritePort, [SDNPHasChain]>;
More information about the llvm-commits
mailing list