DummyInst's member functions don't need to be virtual.
[oota-llvm.git] / lib / VMCore / BasicBlock.cpp
index 431bb5090a764870d1f8179ef97667c2b3f75747..92734bb2138f61357c5c1878ebe88adc659141a4 100644 (file)
@@ -40,11 +40,11 @@ namespace {
       LeakDetector::removeGarbageObject(this);
     }
 
-    virtual Instruction *clone() const {
+    Instruction *clone() const {
       assert(0 && "Cannot clone EOL");abort();
       return 0;
     }
-    virtual const char *getOpcodeName() const { return "*end-of-list-inst*"; }
+    const char *getOpcodeName() const { return "*end-of-list-inst*"; }
 
     // Methods for support type inquiry through isa, cast, and dyn_cast...
     static inline bool classof(const DummyInst *) { return true; }