Sink DwarfUnit::LabelBegin down into DwarfCompileUnit since that's the only place...
[oota-llvm.git] / lib / CodeGen / MachineRegionInfo.cpp
index 54b2eb44298ee82940b0b8d7edc6ce0607e0bc3c..5a5035ecd7864a363cb16e6812560873a73b91e0 100644 (file)
@@ -4,6 +4,8 @@
 #include "llvm/ADT/Statistic.h"
 #include "llvm/Analysis/RegionInfoImpl.h"
 
+#define DEBUG_TYPE "region"
+
 using namespace llvm;
 
 STATISTIC(numMachineRegions,       "The # of machine regions");
@@ -49,11 +51,10 @@ void MachineRegionInfo::updateStatistics(MachineRegion *R) {
     ++numMachineSimpleRegions;
 }
 
-void MachineRegionInfo::MachineRegionInfo::recalculate(
-  MachineFunction &F,
-  MachineDominatorTree *DT_,
-  MachinePostDominatorTree *PDT_,
-  MachineDominanceFrontier *DF_) {
+void MachineRegionInfo::recalculate(MachineFunction &F,
+                                    MachineDominatorTree *DT_,
+                                    MachinePostDominatorTree *PDT_,
+                                    MachineDominanceFrontier *DF_) {
   DT = DT_;
   PDT = PDT_;
   DF = DF_;