summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-10-14 22:18:59 +0000
committerAndrew Trick <atrick@apple.com>2013-10-14 22:18:59 +0000
commit966772931eea7cdc3cdd7199e304d667aa344bd7 (patch)
tree2eec88e73a510f77ff359c8a3b88e2ecbd2eb44a /include
parentff09d7119da02e1834e72884d61d1f1131b43466 (diff)
downloadllvm-966772931eea7cdc3cdd7199e304d667aa344bd7.tar.gz
llvm-966772931eea7cdc3cdd7199e304d667aa344bd7.tar.bz2
llvm-966772931eea7cdc3cdd7199e304d667aa344bd7.tar.xz
LiveRegUnits: Use *MBB for consistency and convenience.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/LiveRegUnits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveRegUnits.h b/include/llvm/CodeGen/LiveRegUnits.h
index 1e24e695a1..02b9c55cc6 100644
--- a/include/llvm/CodeGen/LiveRegUnits.h
+++ b/include/llvm/CodeGen/LiveRegUnits.h
@@ -80,7 +80,7 @@ public:
void stepForward(const MachineInstr &MI, const MCRegisterInfo &MCRI);
/// \brief Adds all registers in the live-in list of block @p BB.
- void addLiveIns(const MachineBasicBlock &BB, const MCRegisterInfo &MCRI);
+ void addLiveIns(const MachineBasicBlock *MBB, const MCRegisterInfo &MCRI);
};
} // namespace llvm