diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-01-13 06:08:37 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-01-13 06:08:37 +0000 |
commit | 167650d41136ed738e364517be8a1412c4955423 (patch) | |
tree | e806439dcad47505d633d3cfc617dac036b993cb /lib/CodeGen/SimpleRegisterCoalescing.cpp | |
parent | 0c2e7b9ab6d0b09a1eddf9ecaaf19af5602c8c88 (diff) |
Un-tabify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r-- | lib/CodeGen/SimpleRegisterCoalescing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index c5fe8c4986..d809ef1b02 100644 --- a/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -1744,7 +1744,7 @@ SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RHS, // less conservative check. It's possible a sub-register is defined before // v1024 (or live in) and live out of BB1. if (RHS.containsOneValue() && - li_->intervalIsInOneMBB(RHS) && + li_->intervalIsInOneMBB(RHS) && li_->getApproximateInstructionCount(RHS) <= 10) { // Perform a more exhaustive check for some common cases. if (li_->conflictsWithPhysRegRef(RHS, LHS.reg, true, JoinedCopies)) |