diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-01-15 22:19:35 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-01-15 22:19:35 +0000 |
commit | 426df7538d1d89eac4fe3b56a74a9febcea6b196 (patch) | |
tree | 22f03b0a7513f6052aaa9dd948819de4d853efcd /include/llvm/CodeGen/LiveVariables.h | |
parent | 9a856b049d767e9da43736e9f05c7a7c772fb404 (diff) |
Unbreak the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LiveVariables.h')
-rw-r--r-- | include/llvm/CodeGen/LiveVariables.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h index b01d2969b7..311d37eeb3 100644 --- a/include/llvm/CodeGen/LiveVariables.h +++ b/include/llvm/CodeGen/LiveVariables.h @@ -303,10 +303,10 @@ public: /// register. VarInfo &getVarInfo(unsigned RegIdx); - void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB); - void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB, + void MarkVirtRegAliveInBlock(unsigned reg, MachineBasicBlock *BB); + void MarkVirtRegAliveInBlock(unsigned reg, MachineBasicBlock *BB, std::vector<MachineBasicBlock*> &WorkList); - void HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB, + void HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB, MachineInstr *MI); }; |