commit | 56ab0def902940d6eee7b8eb668f974e78f3dcbb | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Fri Oct 24 18:46:44 2008 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Fri Oct 24 18:46:44 2008 +0000 |
tree | 45c25692f2f29cfe8a49e583e8bbcb692bac4905 | |
parent | 4047f4a0b478e20e981cc46d2aa0ca3141f79f07 [diff] |
Fix a pasto. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58102 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/PreAllocSplitting.cpp b/lib/CodeGen/PreAllocSplitting.cpp index 37d0df1..18cac07 100644 --- a/lib/CodeGen/PreAllocSplitting.cpp +++ b/lib/CodeGen/PreAllocSplitting.cpp
@@ -214,7 +214,7 @@ do { --MII; unsigned Index = LIs->getInstructionIndex(MII); - unsigned Gap = LIs->hasGapBeforeInstr(Index); + unsigned Gap = LIs->findGapBeforeInstr(Index); if (Gap) { Pt = MII; RestoreIndex = Gap;