Remove support for NOT instruction
[oota-llvm.git] / lib / VMCore / BasicBlock.cpp
index 446af17be1847fba4a313e34094bac5849f4d271..d0859f874322e1123155bbab1c432e57c1343433 100644 (file)
 struct DummyInst : public Instruction {
   DummyInst() : Instruction(Type::VoidTy, NumOtherOps) {}
 
-  virtual Instruction *clone() const { assert(0 && "Cannot clone EOL");abort();}
+  virtual Instruction *clone() const {
+    assert(0 && "Cannot clone EOL");abort();
+    return 0;
+  }
   virtual const char *getOpcodeName() const { return "*end-of-list-inst*"; }
 
   // Methods for support type inquiry through isa, cast, and dyn_cast...