mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +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:
@ -280,7 +280,7 @@ void SSEDomainFixPass::enterBasicBlock() {
|
|||||||
if (rx < 0) continue;
|
if (rx < 0) continue;
|
||||||
for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(),
|
for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(),
|
||||||
pe = MBB->pred_end(); pi != pe; ++pi) {
|
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;
|
if (fi == LiveOuts.end()) continue;
|
||||||
DomainValue *pdv = fi->second[rx];
|
DomainValue *pdv = fi->second[rx];
|
||||||
if (!pdv) continue;
|
if (!pdv) continue;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
; RUN: llc < %s -march=x86-64 -mattr=+sse42 -disable-mmx | FileCheck %s
|
; RUN: llc < %s -march=x86-64 -mattr=+sse42 -disable-mmx | FileCheck %s
|
||||||
; CHECK: movaps
|
; CHECK: movdqa
|
||||||
; CHECK: pmulld
|
; CHECK: pmulld
|
||||||
; CHECK: psubd
|
; CHECK: psubd
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user