summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveVariables.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2012-01-21 03:31:03 +0000
committerEvan Cheng <evan.cheng@apple.com>2012-01-21 03:31:03 +0000
commit64a2beca52163bce53cae3967d3625e81d4f2a80 (patch)
treeea45ca56a0382eef728251f8d1abec0e41673cda /llvm/lib/CodeGen/LiveVariables.cpp
parent0d7305470ecf87f098670849faf255d22dedc514 (diff)
downloadbcm5719-llvm-64a2beca52163bce53cae3967d3625e81d4f2a80.tar.gz
bcm5719-llvm-64a2beca52163bce53cae3967d3625e81d4f2a80.zip
Fix an obvious typo.
llvm-svn: 148622
Diffstat (limited to 'llvm/lib/CodeGen/LiveVariables.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveVariables.cpp b/llvm/lib/CodeGen/LiveVariables.cpp
index 54b9cc18f85..3ce0e824a3f 100644
--- a/llvm/lib/CodeGen/LiveVariables.cpp
+++ b/llvm/lib/CodeGen/LiveVariables.cpp
@@ -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.
OpenPOWER on IntegriCloud