Changes in directory llvm/lib/Target:

MRegisterInfo.cpp updated: 1.20 -> 1.21
---
Log message:

For PR1207: http://llvm.org/PR1207 :
Revert patches that caused the problem. Evan, please investigate and reapply
when you've discovered the problem.


---
Diffs of the changes:  (+1 -1)

 MRegisterInfo.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/MRegisterInfo.cpp
diff -u llvm/lib/Target/MRegisterInfo.cpp:1.20 
llvm/lib/Target/MRegisterInfo.cpp:1.21
--- llvm/lib/Target/MRegisterInfo.cpp:1.20      Sat Feb 17 05:06:00 2007
+++ llvm/lib/Target/MRegisterInfo.cpp   Sun Feb 18 21:20:00 2007
@@ -41,7 +41,7 @@
     const TargetRegisterClass *RC = *I;
     for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
            E = RC->allocation_order_end(MF); I != E; ++I)
-      Allocatable.set(*I);
+      Allocatable[*I] = true;
   }
   return Allocatable;
 }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to