diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-04-30 05:53:27 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-04-30 05:53:27 +0000 |
commit | ee7b0f395671d0b62fc7a00d870eb4b2d30f9ef2 (patch) | |
tree | 16ea0724b8761f2b96c5414864f122c319b12f8c /llvm/lib/Target/PowerPC | |
parent | ef550a6d013fcdb315e395daade1e0074fe97d31 (diff) | |
download | bcm5719-llvm-ee7b0f395671d0b62fc7a00d870eb4b2d30f9ef2.tar.gz bcm5719-llvm-ee7b0f395671d0b62fc7a00d870eb4b2d30f9ef2.zip |
De-virtualize or remove some methods that have no overrides nor override anything. In some cases remove all together if there are no callers either.
llvm-svn: 207610
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.h b/llvm/lib/Target/PowerPC/PPCInstrInfo.h index b2981584e97..d9db3e1b1dc 100644 --- a/llvm/lib/Target/PowerPC/PPCInstrInfo.h +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.h @@ -227,7 +227,7 @@ public: /// GetInstSize - Return the number of bytes of code the specified /// instruction may be. This returns the maximum number of bytes. /// - virtual unsigned GetInstSizeInBytes(const MachineInstr *MI) const final; + unsigned GetInstSizeInBytes(const MachineInstr *MI) const; }; } |