mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-18 09:09:12 +00:00
Fix typo. Thank you, valgrind.
llvm-svn: 99974
This commit is contained in:
parent
c6213a8bc0
commit
13a7a0adff
@ -280,7 +280,7 @@ void SSEDomainFixPass::enterBasicBlock() {
|
||||
if (rx < 0) continue;
|
||||
for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(),
|
||||
pe = MBB->pred_end(); pi != pe; ++pi) {
|
||||
LiveOutMap::const_iterator fi = LiveOuts.find(*pe);
|
||||
LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
|
||||
if (fi == LiveOuts.end()) continue;
|
||||
DomainValue *pdv = fi->second[rx];
|
||||
if (!pdv) continue;
|
||||
|
@ -1,5 +1,5 @@
|
||||
; RUN: llc < %s -march=x86-64 -mattr=+sse42 -disable-mmx | FileCheck %s
|
||||
; CHECK: movaps
|
||||
; CHECK: movdqa
|
||||
; CHECK: pmulld
|
||||
; CHECK: psubd
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user