diff options
| author | Dan Gohman <gohman@apple.com> | 2009-11-06 00:04:05 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-11-06 00:04:05 +0000 |
| commit | b38a308616508e96f18f3bbd7914c8ed859a3b38 (patch) | |
| tree | 3919379e1f4ee007e2c927a1b89941452407b91b /include | |
| parent | 7289ed2ee7828ce52ddf37284da5f60190db3086 (diff) | |
| download | external_llvm-b38a308616508e96f18f3bbd7914c8ed859a3b38.zip external_llvm-b38a308616508e96f18f3bbd7914c8ed859a3b38.tar.gz external_llvm-b38a308616508e96f18f3bbd7914c8ed859a3b38.tar.bz2 | |
Make printImplicitDef and printKill non-virtual, since they don't
need to be overridden.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
| -rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index d051f84..4a6b71d 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -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. |
