diff options
author | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-07-28 16:32:22 +0000 |
---|---|---|
committer | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-07-28 16:32:22 +0000 |
commit | 89217f8835ede9729f15698095fbf7264e8c16aa (patch) | |
tree | 6cf2319f72274abcf256235d6a302b9cc5bdf605 /llvm/lib/Target/MSP430/MSP430InstrInfo.cpp | |
parent | 655e0edfd701255e1894bd5fac6e8b3dde1ef4ad (diff) | |
download | bcm5719-llvm-89217f8835ede9729f15698095fbf7264e8c16aa.tar.gz bcm5719-llvm-89217f8835ede9729f15698095fbf7264e8c16aa.zip |
TargetInstrInfo: rename GetInstSizeInBytes to getInstSizeInBytes. NFC
Differential Revision: https://reviews.llvm.org/D22925
llvm-svn: 276997
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/MSP430/MSP430InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp b/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp index c834da3a11c..16d105d8844 100644 --- a/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp +++ b/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp @@ -293,7 +293,7 @@ unsigned MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB, /// GetInstSize - Return the number of bytes of code the specified /// instruction may be. This returns the maximum number of bytes. /// -unsigned MSP430InstrInfo::GetInstSizeInBytes(const MachineInstr &MI) const { +unsigned MSP430InstrInfo::getInstSizeInBytes(const MachineInstr &MI) const { const MCInstrDesc &Desc = MI.getDesc(); switch (Desc.TSFlags & MSP430II::SizeMask) { |