diff options
author | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2013-05-22 13:38:45 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2013-05-22 13:38:45 +0000 |
commit | 14a4449589e358cabcac355f40a550610d1b93f4 (patch) | |
tree | 7e322146a0cbf1d9b6a9235f3d2690f79fccc48e /llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp | |
parent | a8ea8a03fd275038acdf75468bb44786145670c3 (diff) | |
download | bcm5719-llvm-14a4449589e358cabcac355f40a550610d1b93f4.tar.gz bcm5719-llvm-14a4449589e358cabcac355f40a550610d1b93f4.zip |
[SystemZ] Rename PSW to CC
Addresses a review comment from Ulrich Weigand. No functional change intended.
I'm not sure whether the old TODO that this patch touches still holds,
but that's something we'd get to when adding a targetted scheduling
description.
llvm-svn: 182474
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp b/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp index 53439c9d431..c0d72c3b7d4 100644 --- a/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp +++ b/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp @@ -283,7 +283,7 @@ static void emitIncrement(MachineBasicBlock &MBB, } MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII->get(Opcode), Reg) .addReg(Reg).addImm(ThisVal); - // The PSW implicit def is dead. + // The CC implicit def is dead. MI->getOperand(3).setIsDead(); NumBytes -= ThisVal; } |