[llvm-commits] [llvm] r46021 -	/llvm/trunk/include/llvm/CodeGen/LiveVariables.h
    Evan Cheng 
    evan.cheng at apple.com
       
    Tue Jan 15 14:19:36 PST 2008
    
    
  
Author: evancheng
Date: Tue Jan 15 16:19:35 2008
New Revision: 46021
URL: http://llvm.org/viewvc/llvm-project?rev=46021&view=rev
Log:
Unbreak the build.
Modified:
    llvm/trunk/include/llvm/CodeGen/LiveVariables.h
Modified: llvm/trunk/include/llvm/CodeGen/LiveVariables.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveVariables.h?rev=46021&r1=46020&r2=46021&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveVariables.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveVariables.h Tue Jan 15 16:19:35 2008
@@ -303,10 +303,10 @@
   /// 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);
 };
 
    
    
More information about the llvm-commits
mailing list