Don't print register names in LiveIntervalUnion::print().
[oota-llvm.git] / lib / CodeGen / RegAllocBase.cpp
index 3c91330ecafa2ff8ad6b96976ff5b6b40873f817..5b2ec5e5aaafd58b77c0889bc0df0342d3553f3c 100644 (file)
@@ -96,7 +96,7 @@ void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
   Array =
     static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
   for (unsigned r = 0; r != NRegs; ++r)
-    new(Array + r) LiveIntervalUnion(r, allocator);
+    new(Array + r) LiveIntervalUnion(allocator);
 }
 
 void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {