Make printImplicitDef and printKill non-virtual, since they don't
authorDan Gohman <gohman@apple.com>
Fri, 6 Nov 2009 00:04:05 +0000 (00:04 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 6 Nov 2009 00:04:05 +0000 (00:04 +0000)
need to be overridden.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86198 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/AsmPrinter.h

index d051f843f5328f838a82a61b01cd5e71ca14cf31..4a6b71d75b03ca0693d3748b1a61244b7fc05c6e 100644 (file)
@@ -373,10 +373,10 @@ namespace llvm {
 
     /// printImplicitDef - This method prints the specified machine instruction
     /// that is an implicit def.
-    virtual void printImplicitDef(const MachineInstr *MI) const;
+    void printImplicitDef(const MachineInstr *MI) const;
 
     /// printKill - This method prints the specified kill machine instruction.
-    virtual void printKill(const MachineInstr *MI) const;
+    void printKill(const MachineInstr *MI) const;
 
     /// printPICJumpTableSetLabel - This method prints a set label for the
     /// specified MachineBasicBlock for a jumptable entry.