summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZFrameLowering.cpp
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-05-22 13:38:45 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-05-22 13:38:45 +0000
commitdbd8eb26ce1e7de9b69f5c46f45ba011a706c9b9 (patch)
tree5b35eaee1a1f40aa0654e6ca60a910893ab15cfc /lib/Target/SystemZ/SystemZFrameLowering.cpp
parentd34c40514e716acbce22befd14f4d659a91fcaf2 (diff)
downloadllvm-dbd8eb26ce1e7de9b69f5c46f45ba011a706c9b9.tar.gz
llvm-dbd8eb26ce1e7de9b69f5c46f45ba011a706c9b9.tar.bz2
llvm-dbd8eb26ce1e7de9b69f5c46f45ba011a706c9b9.tar.xz
[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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZFrameLowering.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZFrameLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZFrameLowering.cpp b/lib/Target/SystemZ/SystemZFrameLowering.cpp
index 53439c9d43..c0d72c3b7d 100644
--- a/lib/Target/SystemZ/SystemZFrameLowering.cpp
+++ b/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;
}