[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h

Chris Lattner lattner at cs.uiuc.edu
Sat Jan 28 22:01:25 PST 2006



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.91 -> 1.92
---
Log message:

remove the getBR2Way_CC method


---
Diffs of the changes:  (+0 -15)

 SelectionDAG.h |   15 ---------------
 1 files changed, 15 deletions(-)


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.91 llvm/include/llvm/CodeGen/SelectionDAG.h:1.92
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.91	Sat Jan 28 04:08:58 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h	Sun Jan 29 00:01:13 2006
@@ -229,21 +229,6 @@
     return getNode(ISD::SELECT_CC, VT, LHS, RHS, True, False,getCondCode(Cond));
   }
   
-  /// getBR2Way_CC - Helper function to make it easier to build BRTWOWAY_CC
-  /// nodes.
-  ///
-  SDOperand getBR2Way_CC(SDOperand Chain, SDOperand CCNode, SDOperand LHS, 
-                         SDOperand RHS, SDOperand True, SDOperand False) {
-    std::vector<SDOperand> Ops;
-    Ops.push_back(Chain);
-    Ops.push_back(CCNode);
-    Ops.push_back(LHS);
-    Ops.push_back(RHS);
-    Ops.push_back(True);
-    Ops.push_back(False);
-    return getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
-  }
-  
   /// getVAArg - VAArg produces a result and token chain, and takes a pointer
   /// and a source value as input.
   SDOperand getVAArg(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr,






More information about the llvm-commits mailing list