diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-13 17:58:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-13 17:58:21 +0000 |
commit | 014278e6a11fa0767853b831e5bf51b95bf541c5 (patch) | |
tree | cf93cc36bc9bf6bb3b78a416592b7a93c84efb22 /lib/CodeGen/BranchFolding.cpp | |
parent | b8ca4ff6439c1543a0c6729cbcd6c70c3be7dc3c (diff) |
Remove isImm(), isReg(), and friends, in favor of
isImmediate(), isRegister(), and friends, to avoid confusion
about having two different names with the same meaning. I'm
not attached to the longer names, and would be ok with
changing to the shorter names if others prefer it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | lib/CodeGen/BranchFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index 11866a1518..1051dc7a11 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -161,7 +161,7 @@ bool BranchFolder::OptimizeImpDefsBlock(MachineBasicBlock *MBB) { // See if it uses any of the implicitly defined registers. for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { MachineOperand &MO = I->getOperand(i); - if (!MO.isReg() || !MO.isUse()) + if (!MO.isRegister() || !MO.isUse()) continue; unsigned Reg = MO.getReg(); if (ImpDefRegs.count(Reg)) |