Remove this file as there are no LLVM users of it any more.
[oota-llvm.git] / include / llvm / Instructions.h
index 892feaa2c41dcd0c9b4c2af21d4487bd933ea081..58cc1ee4f154d1b1533e178cab4752ad59125495 100644 (file)
@@ -357,7 +357,6 @@ public:
 /// le, or ge.
 ///
 class SetCondInst : public BinaryOperator {
-  BinaryOps OpType;
 public:
   SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
              const std::string &Name = "", Instruction *InsertBefore = 0);
@@ -983,6 +982,8 @@ public:
   //
   inline const Value *getCondition() const { return Operands[0]; }
   inline       Value *getCondition()       { return Operands[0]; }
+  void setCondition(Value *V) { Operands[0] = V; }
+
   inline const BasicBlock *getDefaultDest() const {
     return cast<BasicBlock>(Operands[1].get());
   }