From: Evan Cheng Date: Tue, 15 Jan 2008 22:19:35 +0000 (+0000) Subject: Unbreak the build. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=426df7538d1d89eac4fe3b56a74a9febcea6b196;p=oota-llvm.git Unbreak the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46021 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h index b01d2969b79..311d37eeb39 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 &WorkList); - void HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB, + void HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB, MachineInstr *MI); };