aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/ARM/ARMFrameLowering.cpp
diff options
context:
space:
mode:
authorSjoerd Meijer <sjoerd.meijer@arm.com>2016-07-28 16:32:22 +0000
committerSjoerd Meijer <sjoerd.meijer@arm.com>2016-07-28 16:32:22 +0000
commit89217f8835ede9729f15698095fbf7264e8c16aa (patch)
tree6cf2319f72274abcf256235d6a302b9cc5bdf605 /llvm/lib/Target/ARM/ARMFrameLowering.cpp
parent655e0edfd701255e1894bd5fac6e8b3dde1ef4ad (diff)
downloadllvm-89217f8835ede9729f15698095fbf7264e8c16aa.zip
llvm-89217f8835ede9729f15698095fbf7264e8c16aa.tar.gz
llvm-89217f8835ede9729f15698095fbf7264e8c16aa.tar.bz2
TargetInstrInfo: rename GetInstSizeInBytes to getInstSizeInBytes. NFC
Differential Revision: https://reviews.llvm.org/D22925 llvm-svn: 276997
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFrameLowering.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMFrameLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFrameLowering.cpp b/llvm/lib/Target/ARM/ARMFrameLowering.cpp
index e8c9f61..3ce62e5 100644
--- a/llvm/lib/Target/ARM/ARMFrameLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMFrameLowering.cpp
@@ -1359,7 +1359,7 @@ static unsigned GetFunctionSizeInBytes(const MachineFunction &MF,
unsigned FnSize = 0;
for (auto &MBB : MF) {
for (auto &MI : MBB)
- FnSize += TII.GetInstSizeInBytes(MI);
+ FnSize += TII.getInstSizeInBytes(MI);
}
return FnSize;
}