diff options
author | Andrew Trick <atrick@apple.com> | 2013-10-14 22:18:59 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-10-14 22:18:59 +0000 |
commit | 966772931eea7cdc3cdd7199e304d667aa344bd7 (patch) | |
tree | 2eec88e73a510f77ff359c8a3b88e2ecbd2eb44a /include | |
parent | ff09d7119da02e1834e72884d61d1f1131b43466 (diff) | |
download | external_llvm-966772931eea7cdc3cdd7199e304d667aa344bd7.zip external_llvm-966772931eea7cdc3cdd7199e304d667aa344bd7.tar.gz external_llvm-966772931eea7cdc3cdd7199e304d667aa344bd7.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveRegUnits.h b/include/llvm/CodeGen/LiveRegUnits.h index 1e24e69..02b9c55 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 |