Fix comment.
[oota-llvm.git] / include / llvm / CodeGen / SelectionDAGISel.h
index 604f6a6b9fb659eabe65f9b46bb176d08a18850a..8557702018f764ce689caa03952d7177c9abc597 100644 (file)
@@ -30,7 +30,7 @@ namespace llvm {
   class TargetLowering;
   class FunctionLoweringInfo;
   class HazardRecognizer;
-
 /// SelectionDAGISel - This is the common base class used for SelectionDAG-based
 /// pattern-matching instruction selectors.
 class SelectionDAGISel : public FunctionPass {
@@ -89,8 +89,7 @@ public:
         TrueBB(truebb), FalseBB(falsebb), ThisBB(me) {}
     // CC - the condition code to use for the case block's setcc node
     ISD::CondCode CC;
-    // CmpLHS/CmpRHS - The LHS/RHS of the comparison to emit.  If CmpRHS is
-    // null, CmpLHS is treated as a bool condition for the branch.
+    // CmpLHS/CmpRHS - The LHS/RHS of the comparison to emit.
     Value *CmpLHS, *CmpRHS;
     // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
     MachineBasicBlock *TrueBB, *FalseBB;
@@ -127,9 +126,6 @@ protected:
   bool CheckOrMask(SDOperand LHS, ConstantSDNode *RHS, int64_t DesiredMaskS);  
   
 private:
-  void SplitCritEdgesForPHIConstants(BasicBlock *BB);
-  SDOperand CopyValueToVirtualRegister(SelectionDAGLowering &SDL,
-                                       Value *V, unsigned Reg);
   void SelectBasicBlock(BasicBlock *BB, MachineFunction &MF,
                         FunctionLoweringInfo &FuncInfo);