Skip to content

Commit 7948dfd

Browse files
jofrnarsenm
andauthored
Update llvm/lib/CodeGen/LiveVariables.cpp
Co-authored-by: Matt Arsenault <[email protected]>
1 parent 4ac7fce commit 7948dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/LiveVariables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ void LiveVariables::HandlePhysRegUse(Register Reg, MachineInstr &MI) {
253253
// If LastPartialDef is NULL, it must be using a livein register.
254254
if (LastPartialDef) {
255255
LastPartialDef->addOperand(
256-
MachineOperand::CreateReg(Reg, true /*IsDef*/, true /*IsImp*/));
256+
MachineOperand::CreateReg(Reg, /*IsDef=*/true, /*IsImp=*/true));
257257
}
258258
} else if (LastDef && !PhysRegUse[Reg.id()] &&
259259
!LastDef->findRegisterDefOperand(Reg, /*TRI=*/nullptr))

0 commit comments

Comments
 (0)