diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-04-05 23:43:16 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-04-05 23:43:16 +0000 |
commit | 858afbb6ac81acaf912d7b0b69c2f71566c43c22 (patch) | |
tree | 4829676d10d29f19822ac2590316335f1d96eea1 /llvm/lib/CodeGen/SplitKit.cpp | |
parent | 5c482cd38f83f6fc1b95f86478e684e5f072399e (diff) | |
download | bcm5719-llvm-858afbb6ac81acaf912d7b0b69c2f71566c43c22.tar.gz bcm5719-llvm-858afbb6ac81acaf912d7b0b69c2f71566c43c22.zip |
Sign error
llvm-svn: 128963
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp index a3e065d1bd9..238b5668ef1 100644 --- a/llvm/lib/CodeGen/SplitKit.cpp +++ b/llvm/lib/CodeGen/SplitKit.cpp @@ -81,7 +81,7 @@ SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) { // If CurLI is live into a landing pad successor, move the last split point // back to the call that may throw. - if (LPad && LSP.second.isValid() && !LIS.isLiveInToMBB(*CurLI, LPad)) + if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad)) return LSP.second; else return LSP.first; |