[llvm-commits] [llvm] r148622 - /llvm/trunk/lib/CodeGen/LiveVariables.cpp

Evan Cheng evan.cheng at apple.com
Fri Jan 20 19:31:03 PST 2012


Author: evancheng
Date: Fri Jan 20 21:31:03 2012
New Revision: 148622

URL: http://llvm.org/viewvc/llvm-project?rev=148622&view=rev
Log:
Fix an obvious typo.

Modified:
    llvm/trunk/lib/CodeGen/LiveVariables.cpp

Modified: llvm/trunk/lib/CodeGen/LiveVariables.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveVariables.cpp?rev=148622&r1=148621&r2=148622&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveVariables.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveVariables.cpp Fri Jan 20 21:31:03 2012
@@ -426,7 +426,7 @@
     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.





More information about the llvm-commits mailing list