1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Fix an obvious typo.

llvm-svn: 148622
This commit is contained in:
Evan Cheng 2012-01-21 03:31:03 +00:00
parent 46feaf86cf
commit 7bd1a126ed

View File

@ -426,7 +426,7 @@ void LiveVariables::HandleRegMask(const MachineOperand &MO) {
if (!PhysRegDef[Reg] && !PhysRegUse[Reg])
continue;
// Skip mask-preserved regs.
if (!MO.clobbersPhysReg(Reg));
if (!MO.clobbersPhysReg(Reg))
continue;
// Kill the largest clobbered super-register.
// This avoids needless implicit operands.