commit | 89217f8835ede9729f15698095fbf7264e8c16aa | [log] [tgz] |
---|---|---|
author | Sjoerd Meijer <sjoerd.meijer@arm.com> | Thu Jul 28 16:32:22 2016 +0000 |
committer | Sjoerd Meijer <sjoerd.meijer@arm.com> | Thu Jul 28 16:32:22 2016 +0000 |
tree | 6cf2319f72274abcf256235d6a302b9cc5bdf605 | |
parent | 655e0edfd701255e1894bd5fac6e8b3dde1ef4ad [diff] [blame] |
TargetInstrInfo: rename GetInstSizeInBytes to getInstSizeInBytes. NFC Differential Revision: https://reviews.llvm.org/D22925 llvm-svn: 276997
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 @@ unsigned FnSize = 0; for (auto &MBB : MF) { for (auto &MI : MBB) - FnSize += TII.GetInstSizeInBytes(MI); + FnSize += TII.getInstSizeInBytes(MI); } return FnSize; }