mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Fix typo. Thank you, valgrind.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99974 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
932df5e9f6
commit
b16df90b48
@ -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