This Analysis is specific to ForTran

Def-Use Activity Analysis
-------------------------

Changes:
--------

ICFGDep.hpp:

L49: (added)
    //! Return an iterator over all records in mDepDFSet
  std::map<StmtHandle,OA_ptr<DepDFSet> >& getDepMap(){ return mDepDFSet;};



OAMaps.cxx:

L210: (added)
  // Def-Use Graph
  FORTTK_MSG(1, "progress: DUG standard: performAnalysis");
  OA::OA_ptr<OA::DUG::ManagerDUGStandard> dugman;
  dugman = new OA::DUG::ManagerDUGStandard(irIF);
  OA::OA_ptr<OA::DUG::DUGStandard> dug
      = dugman->performAnalysis(icfg, parambind, interAlias);


ManagerICFGDep.cpp:

L277: (added)
    // map ProcHandle to stmt in depResults
    mDep->mapStmtToProc(stmt, proc);
