mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-08 09:43:20 +00:00
AArch64: Remove unnecessary parens
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b1fb2ba24d
commit
a95253080b
@ -388,7 +388,7 @@ void AArch64AddressTypePromotion::mergeSExts(ValueToInsts &ValToSExtendedUses,
|
||||
if (DT.dominates(Inst, Pt)) {
|
||||
DEBUG(dbgs() << "Replace all uses of:\n" << *Pt << "\nwith:\n"
|
||||
<< *Inst << '\n');
|
||||
(Pt)->replaceAllUsesWith(Inst);
|
||||
Pt->replaceAllUsesWith(Inst);
|
||||
ToRemove.insert(Pt);
|
||||
Pt = Inst;
|
||||
inserted = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user