Unbreak the build.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 15 Jan 2008 22:19:35 +0000 (22:19 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 15 Jan 2008 22:19:35 +0000 (22:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46021 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/LiveVariables.h

index b01d2969b796fed544f94c1b4a5543069f572a7f..311d37eeb39d45dd236b5f8a0cf8dd427310bc2b 100644 (file)
@@ -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);
 };