Skip to content

Commit

Permalink
[CodeGen][NFC] Fix formatting
Browse files Browse the repository at this point in the history
This fixes the formatting introduced by
fbf0a77.
  • Loading branch information
bwendling committed Oct 17, 2023
1 parent 7dc644f commit 389958a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9141,9 +9141,7 @@ void AArch64InstrInfo::buildClearRegister(Register Reg, MachineBasicBlock &MBB,
const AArch64RegisterInfo &TRI = *STI.getRegisterInfo();

if (TRI.isGeneralPurposeRegister(MF, Reg)) {
BuildMI(MBB, Iter, DL, get(AArch64::MOVZXi), Reg)
.addImm(0)
.addImm(0);
BuildMI(MBB, Iter, DL, get(AArch64::MOVZXi), Reg).addImm(0).addImm(0);
} else if (STI.hasSVE()) {
BuildMI(MBB, Iter, DL, get(AArch64::DUP_ZI_D), Reg)
.addImm(0)
Expand Down

0 comments on commit 389958a

Please sign in to comment.