@@ -586,8 +586,7 @@ std::pair<MemoryLocationRange, bool> aggregate(
586586 " Array location must be of the `collapsed` kind!" );
587587 LLVM_DEBUG (
588588 dbgs () << " [AGGREGATE] Aggregated location: " ;
589- printLocationSource (dbgs (), ResLoc, &Fwk->getDomTree (),
590- &Fwk->getDataLayout (), true );
589+ printLocationSource (dbgs (), ResLoc, &Fwk->getDomTree (), true );
591590 dbgs () << " \n " ;
592591 );
593592 ResLoc.Kind |= Loc.Kind & LocKind::Auxiliary;
@@ -730,16 +729,16 @@ void intializeDefUseSetLog(
730729 }
731730 dbgs () << " Outward exposed must define locations:\n " ;
732731 for (auto &Loc : DU.getDefs ())
733- printLocationSource (dbgs (), Loc, &DT, &DL, true ), dbgs () << " \n " ;
732+ printLocationSource (dbgs (), Loc, &DT, true ), dbgs () << " \n " ;
734733 dbgs () << " Outward exposed may define locations:\n " ;
735734 for (auto &Loc : DU.getMayDefs ())
736- printLocationSource (dbgs (), Loc, &DT, &DL, true ), dbgs () << " \n " ;
735+ printLocationSource (dbgs (), Loc, &DT, true ), dbgs () << " \n " ;
737736 dbgs () << " Outward exposed uses:\n " ;
738737 for (auto &Loc : DU.getUses ())
739- printLocationSource (dbgs (), Loc, &DT, &DL, true ), dbgs () << " \n " ;
738+ printLocationSource (dbgs (), Loc, &DT, true ), dbgs () << " \n " ;
740739 dbgs () << " Explicitly accessed locations:\n " ;
741740 for (auto &Loc : DU.getExplicitAccesses ())
742- printLocationSource (dbgs (), Loc, &DT, &DL, true ), dbgs () << " \n " ;
741+ printLocationSource (dbgs (), Loc, &DT, true ), dbgs () << " \n " ;
743742 for (auto *I : DU.getExplicitUnknowns ())
744743 I->print (dbgs ()), dbgs () << " \n " ;
745744 dbgs () << " [END DEFUSE]\n " ;
0 commit comments