2008-1-x  Dan Quinlan 0.9.1a

	* Removed the ROSE/src/roseIndependentSupport/visualization
	  directory since ti si old code superseded by zgrviewer.
	  Note that zgrviewer is available on the web (SourceForge).
	
	* Removed the ROSE/src/roseIndependentSupport/graphics
	  directory since it is old code that is not used and it
	  is superceeded by a new design.

	* Remove ROSE/prjects/BinaryContextLookup directory since
	  it has xml dependences that may not be available for users.
	  This might mean that we don't need the xml configure option 
	  as well.

	* Added support for Yices SMT Solver (see configure options).
	  Run "configure --help" to see configure options.

	* Updated to new Open Fortran Parser (1/18/2008).

	* Added more support for Fortran "entry statement".

	* Reviewed previous bugs in Fortran support to see which ones were
	  fixed by the new version of OFP and moved those fixed testcode
	  to the list required to pass.

	* Fixed Yices support to use AST attributes for Yices expressions.

	* -lfl should no longer be required on the link line. The yywrap
	  requirement that caused this should not be gone.

	* Added include directories to the path to avoid paths to header
	  files being wrong after the install (allowing make install to 
	  work for the binary analysis option.



2008-1-8  Dan Quinlan 0.9.0b

	* Added required files to allow distribution to be compiled with 
	  common configure options: Fortran, HPCToolKit, Binary Analysis.

	* Fixed a number of minor details that permit the distribution
	  built with any minimal set of configure options to be built
	  with all possible options.  This required added EXTRA_DIST
	  entries as required to be all required files in place into
	  the distribution independent of the configure options used
	  to build the distribution.  A new test script:
	       ROSE/scripts/roseTestDistribution
	  can be used to test this.

	* Added Liao's latest work on the Fortran outliner and OpenMP
	  work.

	* Added latest patches specific to binary analysis.


2008-1-7  Dan Quinlan 0.9.0a

	* Added Fortran 2003 support (using LANL Open Fortran Parser).
	  There are too many Fortran specific details to list.  Furture
	  work will add more details specific to Fortran progress to the
	  ChangLog.

	* Added initial support for binary analysis, there are too many
	  details specific to this as well. So future work will address
	  more specifics about what additional progress is made here.

	* Name qualification mechnaism (for code generation) is now
	  significantly faster and avoids a quadratic complexity. It is
	  now linear, but it is still too expensive, and will be worked on
	  further in the future (timings are now availabel for this;
	  using -rose:verbose 2).

	* Numerous template details specific to compatability with later
	  versions of g++ (versions 4.0 through 4.2) have been fixed.

	* Fixed use of offsetOf macro for GNU version 3.4 and greater.

	* Added back most of the symbol table handling functions
	  previously removed (in 0.8.8a). test2007_24.C demonstrates
	  that symbols with the same name are allows in a scope and
	  that we need these type specific functions to look for 
	  the correct symbols (require by AST merge mechanism).

	* Added substantial number of functiosn to SgSymbolTable
	  and SgScopeStatement to handle the symbole tables in ROSE.
	  
	* Fixed mumber functions to be const in unparser.

	* Modified SgArrayType to delete it index expression (changed to
	  DEF_DELETE in ROSETTA specification).  Doen to support AST
	  merge.

	* Added member functions in all relavant IR nodes to lookup
	  the associated SgSymbol.

	* Added remove function that takes a specific SgSymbol, since
	  removing all SgSymbols or derived classes from SgSymbol
	  that match the name is dangerous since there can be multiple
	  entries under a given name (e.g. typedef struct X{} X;")
	  or symbols of the exact same type can be repeated when 
	  declared without names (e.g. "struct {}; struct {};").
	  The new functions provide the required precission to 
	  remove indificual symbols who's internal declarations 
	  (using "get_basis_()" member function) match a specific
	  declaration.

	* Fixed const handling for unparseToString() member function.
	  Lots of associated const details were also addressed to make the
	  IR easier to use.

	* SgTemplateSymbol was previously not placed correct in the EDG
	  AST, we now use the template referenced through the 
	  canonical_template (which is the location of the first template).

	* Loading and unloading of symbols for template instantiations
	  is now done for all name chages in the template name resetting
	  (in post-processing).

	* Symbol table senmantics now modified to disallow addition of
	  symbol with name not matching the associated symbols declaration
	  (the name generated from the declaration).

	* Multiple symbols using the same associated declaration are not
	  allowed in the same symbol table (no checking for symbols
	  entered in to more than one symbol table, see below).  
	  
	* Scope of symbol table must match that of the scope of the 
	  associated declaration (when inserted into the symbol table, 
	  not after being shared).

	* SgClassDefinition objects that are never defined are generated
	  internally in SageIII and not correctly marked as compiler
	  generated.

	* Redundant SgBasicBlock is eliminated for case of "if" statement
	  without an explicit "else" case.
	  
	* Redundant declarations of functions in separate name spaces wuth
	  the same name (e.g. "std") are now properly handled within AST
	  merge.

	* Skipped building SgVariableSymbol for "..." when used in catch
	  statement.

	* Fixed use of many IR nodes in ROSE by enforcing and correcting
	  locations where an IR node is not in the child listof its
	  parent. This was a test that was previously suggested by
	  Jeremiah, and implemented by Ghassan, but for which the AST
	  previously reported many violations.  Many of these are fixed
	  and the exceptions noted in theAST consistancy tests that test
	  this aspect of the AST.

	* Modifed type SgClassDeclaration to use the defined enum type
	  SgClassDeclaration::class_types instead of an "int" for the
	  p_class_type data member (which appears in the constructor
	  parameter list).
	

	* Added SgStatement data member pointer to SgLabelStatement
	  to better match the C and C++ grammar. The use of this is
	  not implemented.

	* Added integer numeric label to SgStatement to support Fortran
	  numeric labels.

	* SgProcedureHeaderStatement should be removed in favor of a
	  function, which if it is a proedure use return void type.
	  This subject is currently under review, work by Gina would have
	  to be updated.

	* Added SgFortranNonblockedDo, derived from SgFortranDo.
	  Adds SgStatement pointer to labeled terminating action-statement
	  (which can be shared, so is not traversed, at least for now).

	* Modified SgFortranDo to ise SgExpression* for the initializer,
	  test condiditon, and increment; to better conform to the
	  standard.

	* Modified std::string parameters to be pass by reference instead
	  of pass by value for the case of Sg_File_Info constructor,
	  PreprocessingInfo constructor, and
	  ROSEAttributesList::addElement() member function.

	* Fixed source position of function declaration prototypes 
	  (secondary declarations are not alwasy getting the correct
	  source position information; e.g. forward class declarations).

	* Fixed source position information computed for calls to
	  conversion operators when specified as references to types
	  (e.g. "class A { operator int&(); };" when called using
	  "A x; (int)x;" (see test2007_44.C)).

	* Fixed definitions of size_t which conflicted presiously with
	  where it was defined in (commented out our definitions):
	  rose_edg_required_macros_and_functions.h.in

	* Fixed case of enum types used in using declarations 
	  (see test2007_50.C).

	* Fixed case of function call from typedef of function pointer.
	  (see test2007_45.C).

	* Fixed use of old style automake macros and enforced that
	  automake 1.9.6 or newer is used and autoconf 2.5.9 or newer is
	  used.

	* Fixed use of PACKAGE and VERSION macros in makefiles and 
	  changed to PACKAGE_NAME and PACKAGE_VERSION acording the new
	  style automake.

	* Added optional argument to take variant:
	  SgSymbolTable::print( std::string label, VariantT nodeType )
	  This allows to output only specific types of symbols when used
	  and is helpful for debugging symbol table details.

	* Moved SgClassSymbols associated with SgTemplateInstantiationDecl
	  to the scope of the SgTemplateInstantiationDecl (we previously
	  placed in the current scope (curr_sg_scope and this was most
	  often SgGlobal).  This implementation is more uniform with the
	  handling of other symbols.

	* Fixed const class members initialized in class generate a
	  SgVariableSymbol and add it to the class definition's symbol
	  table. See test2005_32.C.  This was required for the name
	  qualification to work properly.
	
        * Added initial support for Fortran, using Open Fortran 2003 Parser
	  from Los Alamos.

	* Reorganized unparser to provide support for multiple languages.

	* Added unparser support for Fortran language.
	
	* Refactored SgType::stripTypedefsAndModifiers() to use SgType::stripType().

	* Improved on copy mechanism to make copies avoid references to
	  the original AST subtree being copied.

	* SgLabelStatement now has an explicit data member to store the
	  scope.  The hasExplicitScope() member function has been updated
	  appropriately.

	* Friend template declaration is not marked as friend. 

	* The Cxx_GrammarTerminalNames array which maps enum values to
	  strings is now implemented in terms of the new V_SgNode names
	  instead of the older Sage III tag names (which have been
	  depricated for a long time).

	* Added fix suggested by Valentin David to makelinks script.

	
	
2007-06-04  Dan Quinlan  0.8.10e
	* Fixed use of staticly dimensioned C style string to
	  hold command line when using -rose:astMerge option.
	  This option will be more useful in the next release.

	* Fixed reference to bddbddb file output/RelationVisitor.cc
	  (got the fix from Rich Vuduc).  This was an isue with 
	  using automake 1.9.2 and was not an isue for 1.9.6.
	  However there are other details of the ROSE configuration
	  which makes this release work better with 1.9.2.  Use of
	  automake 1.9.6 will likely be required for future releases
	  of ROSE (next release).

	* Fixed handling of -jn option for compilation of
	  tutorial/liaOutliner directory.

	
2007-03-24  Richard Vuduc  0.8.10d

	* Applied patches for Ghassan Mishergi's DatalogAnalysis project.
	(config/support-bddbddb.m4, config/support-python.m4,
	configure.in, projects/DatalogAnalysis/README,
	projects/DatalogAnalysis/bddbddb,
	projects/DatalogAnalysis/include/common.hh,
	projects/DatalogAnalysis/relationTranslatorGenerator/Makefile.am,
	projects/DatalogAnalysis/tests/Makefile.am)

	* Applied patches from Jeremiah Willcock for his virtual CFG
	implementation.
	(src/ROSETTA/Grammar/Expression.code,
	src/ROSETTA/Grammar/Node.code, src/ROSETTA/Grammar/Statement.code,
	src/ROSETTA/src/expression.C,
	src/frontend/SageIII/virtualCFG/cfgToDot.C,
	src/frontend/SageIII/virtualCFG/cfgToDot.h,
	src/frontend/SageIII/virtualCFG/virtualCFG.C,
	src/frontend/SageIII/virtualCFG/virtualCFG.h)

	* Extended the vitual CFG interface with a new set of filtered CFG
	processing classes; this work done by Christian Iwainsky.
	(src/frontend/SageIII/virtualCFG/Makefile.am,
	src/frontend/SageIII/virtualCFG/filteredCFG.h,
	src/frontend/SageIII/virtualCFG/filteredCFGImpl.h)

	* Implemented the LiaOutliner, an outliner. The implementation is
	based on initial work by Chunhua Liao, extended to handle C++ by
	Richard Vuduc. The implementation includes a test suite.
	(projects/liaOutliner, projects/liaOutliner/examples,
	projects/liaOutliner/src, projects/liaOutliner/tests,
	projects/liaOutliner/Make.inc, projects/liaOutliner/Makefile.am,
	projects/liaOutliner/README,
	projects/liaOutliner/examples/Makefile.am,
	projects/liaOutliner/examples/RandomStmtSelector.cc,
	projects/liaOutliner/examples/RandomStmtSelector.hh,
	projects/liaOutliner/examples/injectOutlinePragmas.cc,
	projects/liaOutliner/examples/liaoutline.cc,
	projects/liaOutliner/examples/outlineRandom.cc,
	projects/liaOutliner/examples/outlineSelection.cc,
	projects/liaOutliner/src/ASTtools/ASTtools.cc,
	projects/liaOutliner/src/ASTtools/ASTtools.hh,
	projects/liaOutliner/src/ASTtools/Copy.cc,
	projects/liaOutliner/src/ASTtools/Copy.hh,
	projects/liaOutliner/src/ASTtools/Jumps.cc,
	projects/liaOutliner/src/ASTtools/Jumps.hh,
	projects/liaOutliner/src/ASTtools/Makefile.am,
	projects/liaOutliner/src/ASTtools/PrePostTraversal.cc,
	projects/liaOutliner/src/ASTtools/PrePostTraversal.hh,
	projects/liaOutliner/src/ASTtools/PreprocessingInfo.cc,
	projects/liaOutliner/src/ASTtools/PreprocessingInfo.hh,
	projects/liaOutliner/src/ASTtools/StmtRewrite.cc,
	projects/liaOutliner/src/ASTtools/StmtRewrite.hh,
	projects/liaOutliner/src/ASTtools/This.cc,
	projects/liaOutliner/src/ASTtools/This.hh,
	projects/liaOutliner/src/ASTtools/VarSym.cc,
	projects/liaOutliner/src/ASTtools/VarSym.hh,
	projects/liaOutliner/src/CPreproc/Case.cc,
	projects/liaOutliner/src/CPreproc/ExtractIfs.cc,
	projects/liaOutliner/src/CPreproc/If.cc,
	projects/liaOutliner/src/CPreproc/If.hh,
	projects/liaOutliner/src/CPreproc/IfDirectiveContextFinder.cc,
	projects/liaOutliner/src/CPreproc/IfDirectiveContextFinder.hh,
	projects/liaOutliner/src/CPreproc/IfDirectiveExtractor.cc,
	projects/liaOutliner/src/CPreproc/IfDirectiveExtractor.hh,
	projects/liaOutliner/src/CPreproc/Makefile.am,
	projects/liaOutliner/src/Check.cc,
	projects/liaOutliner/src/LiaOutliner.cc,
	projects/liaOutliner/src/LiaOutliner.hh,
	projects/liaOutliner/src/Makefile.am,
	projects/liaOutliner/src/NameGenerator.cc,
	projects/liaOutliner/src/NameGenerator.hh,
	projects/liaOutliner/src/PragmaInterface.cc,
	projects/liaOutliner/src/Preprocess/Block.cc,
	projects/liaOutliner/src/Preprocess/Makefile.am,
	projects/liaOutliner/src/Preprocess/NonLocalControlFlow.cc,
	projects/liaOutliner/src/Preprocess/NonLocalDecls.cc,
	projects/liaOutliner/src/Preprocess/PreprocIfs.cc,
	projects/liaOutliner/src/Preprocess/Preprocess.cc,
	projects/liaOutliner/src/Preprocess/Preprocess.hh,
	projects/liaOutliner/src/Preprocess/ThisExprs.cc,
	projects/liaOutliner/src/Transform/CollectVars.cc,
	projects/liaOutliner/src/Transform/GenerateCall.cc,
	projects/liaOutliner/src/Transform/GenerateFunc.cc,
	projects/liaOutliner/src/Transform/Insert.cc,
	projects/liaOutliner/src/Transform/Makefile.am,
	projects/liaOutliner/src/Transform/Transform.cc,
	projects/liaOutliner/src/Transform/Transform.hh,
	projects/liaOutliner/tests/Makefile.am,
	projects/liaOutliner/tests/build_tests-1pass.sh)

	* Fixed the processing of the configure-time option,
	"--with-ROSE_LONG_MAKE_CHECK_RULE".
	(configure.in, config/ROSE.m4)

	* Split lists of passing/failing C++ tests into separate reusable
	Makefile stubs, so that they can be reused in other module
	testing, e.g., the LiaOutliner testing process reuses the list of
	passing C++ tests.
	(tests/CompileTests/Cxx_tests/Makefile.am,
	tests/CompileTests/Cxx_tests/Makefile-fail.inc,
	tests/CompileTests/Cxx_tests/Makefile-pass.inc)

	* Added a reference label to the Inliner tutorial chapter.
	(docs/Rose/Tutorial/inliner.tex)

	* Created a tutorial chapter for the LiaOutliner.
	(docs/Rose/Tutorial/outliner.tex, tutorial/Makefile.am,
	tutorial/liaOutliner, tutorial/liaOutliner/Makefile.am,
	tutorial/liaOutliner/inputCode_Ifs.cc,
	tutorial/liaOutliner/inputCode_OutlineLoop.cc,
	tutorial/liaOutliner/inputCode_OutlineNonLocalJumps.cc,
	tutorial/liaOutliner/outline.cc,
	tutorial/liaOutliner/outlineIfs.cc,
	tutorial/liaOutliner/outlinePreproc.cc)

	* Added line numbers to a ROSE-HPCT tutorial figure.
	(docs/Rose/Tutorial/roseHPCT.tex)

********* TESTED with **************
(*)  automake (GNU automake) 1.9.5
(*)  autoconf (GNU Autoconf) 2.59
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 2.3
(*)  doxygen 1.3.5
(*)  (*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   config/ROSE.m4
>Locally modified   config/support-bddbddb.m4
>Locally modified   docs/Rose/Tutorial/inliner.tex
>Locally modified   docs/Rose/Tutorial/outliner.tex
>Locally modified   docs/Rose/Tutorial/roseHPCT.tex
>Locally modified   projects/Makefile.am
>Locally modified   projects/DatalogAnalysis/README
>Locally modified   projects/DatalogAnalysis/bddbddb
>Locally modified   projects/DatalogAnalysis/include/common.hh
>Locally modified   projects/DatalogAnalysis/relationTranslatorGenerator/Makefile.am
>Locally modified   projects/DatalogAnalysis/relationTranslatorGenerator/Relations.pyc
>Locally modified   projects/DatalogAnalysis/relationTranslatorGenerator/Visitor.pyc
>Locally modified   projects/DatalogAnalysis/tests/Makefile.am
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/frontend/SageIII/virtualCFG/Makefile.am
>Locally modified   src/frontend/SageIII/virtualCFG/cfgToDot.C
>Locally modified   src/frontend/SageIII/virtualCFG/cfgToDot.h
>Locally modified   src/frontend/SageIII/virtualCFG/virtualCFG.C
>Locally modified   src/frontend/SageIII/virtualCFG/virtualCFG.h
>Locally modified   tests/CompileTests/Cxx_tests/Makefile.am
>Locally modified   tests/CompileTests/sourcePosition_tests/Makefile.am
>Locally modified   tutorial/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      config/support-python.m4
+Scheduled for add      projects/liaOutliner/Make.inc
+Scheduled for add      projects/liaOutliner/Makefile.am
+Scheduled for add      projects/liaOutliner/README
+Scheduled for add      projects/liaOutliner/examples/Makefile.am
+Scheduled for add      projects/liaOutliner/examples/RandomStmtSelector.cc
+Scheduled for add      projects/liaOutliner/examples/RandomStmtSelector.hh
+Scheduled for add      projects/liaOutliner/examples/injectOutlinePragmas.cc
+Scheduled for add      projects/liaOutliner/examples/liaoutline.cc
+Scheduled for add      projects/liaOutliner/examples/outlineRandom.cc
+Scheduled for add      projects/liaOutliner/examples/outlineSelection.cc
+Scheduled for add      projects/liaOutliner/src/Check.cc
+Scheduled for add      projects/liaOutliner/src/LiaOutliner.cc
+Scheduled for add      projects/liaOutliner/src/LiaOutliner.hh
+Scheduled for add      projects/liaOutliner/src/Makefile.am
+Scheduled for add      projects/liaOutliner/src/NameGenerator.cc
+Scheduled for add      projects/liaOutliner/src/NameGenerator.hh
+Scheduled for add      projects/liaOutliner/src/PragmaInterface.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/ASTtools.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/ASTtools.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/Copy.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/Copy.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/Jumps.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/Jumps.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/Makefile.am
+Scheduled for add      projects/liaOutliner/src/ASTtools/PrePostTraversal.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/PrePostTraversal.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/PreprocessingInfo.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/PreprocessingInfo.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/StmtRewrite.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/StmtRewrite.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/This.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/This.hh
+Scheduled for add      projects/liaOutliner/src/ASTtools/VarSym.cc
+Scheduled for add      projects/liaOutliner/src/ASTtools/VarSym.hh
+Scheduled for add      projects/liaOutliner/src/CPreproc/Case.cc
+Scheduled for add      projects/liaOutliner/src/CPreproc/ExtractIfs.cc
+Scheduled for add      projects/liaOutliner/src/CPreproc/If.cc
+Scheduled for add      projects/liaOutliner/src/CPreproc/If.hh
+Scheduled for add      projects/liaOutliner/src/CPreproc/IfDirectiveContextFinder.cc
+Scheduled for add      projects/liaOutliner/src/CPreproc/IfDirectiveContextFinder.hh
+Scheduled for add      projects/liaOutliner/src/CPreproc/IfDirectiveExtractor.cc
+Scheduled for add      projects/liaOutliner/src/CPreproc/IfDirectiveExtractor.hh
+Scheduled for add      projects/liaOutliner/src/CPreproc/Makefile.am
+Scheduled for add      projects/liaOutliner/src/Preprocess/Block.cc
+Scheduled for add      projects/liaOutliner/src/Preprocess/Makefile.am
+Scheduled for add      projects/liaOutliner/src/Preprocess/NonLocalControlFlow.cc
+Scheduled for add      projects/liaOutliner/src/Preprocess/NonLocalDecls.cc
+Scheduled for add      projects/liaOutliner/src/Preprocess/PreprocIfs.cc
+Scheduled for add      projects/liaOutliner/src/Preprocess/Preprocess.cc
+Scheduled for add      projects/liaOutliner/src/Preprocess/Preprocess.hh
+Scheduled for add      projects/liaOutliner/src/Preprocess/ThisExprs.cc
+Scheduled for add      projects/liaOutliner/src/Transform/CollectVars.cc
+Scheduled for add      projects/liaOutliner/src/Transform/GenerateCall.cc
+Scheduled for add      projects/liaOutliner/src/Transform/GenerateFunc.cc
+Scheduled for add      projects/liaOutliner/src/Transform/Insert.cc
+Scheduled for add      projects/liaOutliner/src/Transform/Makefile.am
+Scheduled for add      projects/liaOutliner/src/Transform/Transform.cc
+Scheduled for add      projects/liaOutliner/src/Transform/Transform.hh
+Scheduled for add      projects/liaOutliner/tests/Makefile.am
+Scheduled for add      projects/liaOutliner/tests/build_tests-1pass.sh
+Scheduled for add      src/frontend/SageIII/virtualCFG/filteredCFG.h
+Scheduled for add      src/frontend/SageIII/virtualCFG/filteredCFGImpl.h
+Scheduled for add      tests/CompileTests/Cxx_tests/Makefile-fail.inc
+Scheduled for add      tests/CompileTests/Cxx_tests/Makefile-pass.inc
+Scheduled for add      tutorial/liaOutliner/Makefile.am
+Scheduled for add      tutorial/liaOutliner/inputCode_Ifs.cc
+Scheduled for add      tutorial/liaOutliner/inputCode_OutlineLoop.cc
+Scheduled for add      tutorial/liaOutliner/inputCode_OutlineNonLocalJumps.cc
+Scheduled for add      tutorial/liaOutliner/outline.cc
+Scheduled for add      tutorial/liaOutliner/outlineIfs.cc
+Scheduled for add      tutorial/liaOutliner/outlinePreproc.cc
********* Files Scheduled to be removed *********
-Scheduled for removal  projects/DatalogAnalysis/relationTranslatorGenerator/output/RelationVisitor.cc
-Scheduled for removal  projects/DatalogAnalysis/relationTranslatorGenerator/output/RelationVisitor.hh
********* WARNINGS *********
********* ERRORS *********

2007-02-19  Richard Vuduc 0.8.10c

	* Created a ROSE-HPCT tutorial.
	(configure.in, docs/Rose/Tutorial/Makefile.am,
	docs/Rose/Tutorial/roseHPCT.tex, docs/Rose/Tutorial/traversal.tex,
	docs/Rose/Tutorial/tutorial.tex.in, tutorial/Makefile.am,
	tutorial/roseHPCT, tutorial/roseHPCT/Makefile.am,
	tutorial/roseHPCT/command-line-static.tex,
	tutorial/roseHPCT/profiled-save.out, tutorial/roseHPCT/profiled.c,
	tutorial/roseHPCT/profiled-p93-save.pdf,
	tutorial/roseHPCT/static.tex, tutorial/roseHPCT/PAPI_FP_OPS.xml,
	tutorial/roseHPCT/PAPI_L1_DCA.xml,
	tutorial/roseHPCT/PAPI_L1_DCM.xml,
	tutorial/roseHPCT/PAPI_L2_TCM.xml,
	tutorial/roseHPCT/PAPI_TOT_CYC.xml,
	tutorial/roseHPCT/attachMetrics.cc)
	

	* Improved ROSE-HPCT's method of normalizing and propagating
	metrics in the AST when a particular metric could map to multiple
	SgStatement nodes. Also removed a few out-dated C++ constructs.
	(projects/roseHPCToolkit/Make.inc,
	projects/roseHPCToolkit/examples/attach_metrics.cc,
	projects/roseHPCToolkit/examples/process_cmdline.cc,
	projects/roseHPCToolkit/examples/propagate_metrics.cc,
	projects/roseHPCToolkit/examples/test_highlevel.cc,
	projects/roseHPCToolkit/examples/test_hl01.sh,
	projects/roseHPCToolkit/include/rosehpct/rosehpct.hh,
	projects/roseHPCToolkit/include/rosehpct/profir2sage/profir2sage.hh,
	projects/roseHPCToolkit/include/rosehpct/sage/collectors.hh,
	projects/roseHPCToolkit/include/rosehpct/sage/sage.hh,
	projects/roseHPCToolkit/include/rosehpct/util/general.hh,
	projects/roseHPCToolkit/include/rosehpct/util/tree2.hh,
	projects/roseHPCToolkit/include/rosehpct/util/types.hh,
	projects/roseHPCToolkit/include/rosehpct/xml/xml.hh,
	projects/roseHPCToolkit/src/Makefile.am,
	projects/roseHPCToolkit/src/profir2sage/attach.cc,
	projects/roseHPCToolkit/src/rosehpct.cc,
	projects/roseHPCToolkit/src/sage/collect.cc,
	projects/roseHPCToolkit/src/sage/depth.cc,
	projects/roseHPCToolkit/src/sage/metric.cc,
	projects/roseHPCToolkit/src/sage/propagate.cc,
	projects/roseHPCToolkit/src/util/general.cc,
	projects/roseHPCToolkit/src/xml/handler.cc,
	projects/roseHPCToolkit/src/xml/parser.cc,
	projects/roseHPCToolkit/src/xml2profir/convert.cc,
	projects/roseHPCToolkit/src/xml2profir/process.cc)

	* Fixed ROSE-HPCT libtool linking bugs.
	(config/Makefile.for.ROSE.includes.and.libs,
	projects/roseHPCToolkit/src/Makefile.am,
	projects/roseHPCToolkit/src/profir/Makefile.am,
	projects/roseHPCToolkit/src/profir2sage/Makefile.am,
	projects/roseHPCToolkit/src/sage/Makefile.am,
	projects/roseHPCToolkit/src/util/Makefile.am,
	projects/roseHPCToolkit/src/xml-xercesc/Makefile.am,
	projects/roseHPCToolkit/src/xml/Makefile.am,
	projects/roseHPCToolkit/src/xml2profir/Makefile.am)

	* Extended the AstPDFGeneration interface to accept a
	user-selected output filename.
	(src/midend/astProcessing/AstPDFGeneration.C,
	src/midend/astProcessing/AstPDFGeneration.h)
	
	* Fixed M4 macro underquoting warnings, which were produced when
	using the latest versions of the GNU AutoTools.
	(config/support-bddbddb.m4, config/support-edg-debugging.m4,
	config/support-maple.m4, config/support-omp.m4,
	config/support-rpath.m4, config/support-xml.m4, config/wave.m4)

********* TESTED with **************
(*)  automake (GNU automake) 1.9.5
(*)  autoconf (GNU Autoconf) 2.59
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 2.3
(*)  doxygen 1.3.5
(*)  (*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/support-bddbddb.m4
>Locally modified   config/support-edg-debugging.m4
>Locally modified   config/support-maple.m4
>Locally modified   config/support-omp.m4
>Locally modified   config/support-rpath.m4
>Locally modified   config/support-xml.m4
>Locally modified   config/wave.m4
>Locally modified   docs/Rose/Tutorial/Makefile.am
>Locally modified   docs/Rose/Tutorial/traversal.tex
>Locally modified   docs/Rose/Tutorial/tutorial.tex.in
>Locally modified   projects/roseHPCToolkit/Make.inc
>Locally modified   projects/roseHPCToolkit/examples/attach_metrics.cc
>Locally modified   projects/roseHPCToolkit/examples/process_cmdline.cc
>Locally modified   projects/roseHPCToolkit/examples/propagate_metrics.cc
>Locally modified   projects/roseHPCToolkit/examples/test_highlevel.cc
>Locally modified   projects/roseHPCToolkit/examples/test_hl01.sh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/rosehpct.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/profir2sage/profir2sage.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/sage/collectors.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/sage/sage.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/util/general.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/util/tree2.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/util/types.hh
>Locally modified   projects/roseHPCToolkit/include/rosehpct/xml/xml.hh
>Locally modified   projects/roseHPCToolkit/src/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/rosehpct.cc
>Locally modified   projects/roseHPCToolkit/src/profir/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/profir2sage/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/profir2sage/attach.cc
>Locally modified   projects/roseHPCToolkit/src/sage/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/sage/collect.cc
>Locally modified   projects/roseHPCToolkit/src/sage/depth.cc
>Locally modified   projects/roseHPCToolkit/src/sage/metric.cc
>Locally modified   projects/roseHPCToolkit/src/sage/propagate.cc
>Locally modified   projects/roseHPCToolkit/src/util/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/util/general.cc
>Locally modified   projects/roseHPCToolkit/src/xml/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/xml/handler.cc
>Locally modified   projects/roseHPCToolkit/src/xml/parser.cc
>Locally modified   projects/roseHPCToolkit/src/xml-xercesc/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/xml2profir/Makefile.am
>Locally modified   projects/roseHPCToolkit/src/xml2profir/convert.cc
>Locally modified   projects/roseHPCToolkit/src/xml2profir/process.cc
>Locally modified   src/midend/astProcessing/AstPDFGeneration.C
>Locally modified   src/midend/astProcessing/AstPDFGeneration.h
>Locally modified   tutorial/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      docs/Rose/Tutorial/roseHPCT.tex
+Scheduled for add      tutorial/roseHPCT/Makefile.am
+Scheduled for add      tutorial/roseHPCT/PAPI_FP_OPS.xml
+Scheduled for add      tutorial/roseHPCT/PAPI_L1_DCA.xml
+Scheduled for add      tutorial/roseHPCT/PAPI_L1_DCM.xml
+Scheduled for add      tutorial/roseHPCT/PAPI_L2_TCM.xml
+Scheduled for add      tutorial/roseHPCT/PAPI_TOT_CYC.xml
+Scheduled for add      tutorial/roseHPCT/attachMetrics.cc
+Scheduled for add      tutorial/roseHPCT/command-line-static.tex
+Scheduled for add      tutorial/roseHPCT/profiled-p93-save.pdf
+Scheduled for add      tutorial/roseHPCT/profiled-save.out
+Scheduled for add      tutorial/roseHPCT/profiled.c
+Scheduled for add      tutorial/roseHPCT/static.tex
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

	
2007-02-16 Richard Vuduc 0.8.10b

	* Fixed a bug in which standard library paths were hard-coded into
	the EDG_SAGE_Connection convenience library (libedgSage.la), since
	these paths would appear in the ROSE EDG-binary distributions. The
	fix distributes the libtool object file (".lo" file) instead of
	the libtool library (".la").
	(src/frontend/EDG_SAGE_Connection/Makefile.am, scripts/libtoolcp,
	src/Makefile.am)

	* Replaced the use of ImageMagick's "convert" with "ps2pdf" when
	generating the PDF version of the ROSE directory map in the
	documentation. The "convert" can quickly run out of memory and
	fail to complete when the directory structure becomes large.
	(docs/Rose/Makefile.am)

	* Replaced a hard-coded reference to "g++" with
	"$(CXX)".
	(tests/CompilerOptionsTests/testCpreprocessorOption/Makefile.am)

********* TESTED with **************
(*)  automake (GNU automake) 1.9.5
(*)  autoconf (GNU Autoconf) 2.59
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 2.3
(*)  doxygen 1.3.5
(*)  (*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   docs/Rose/Makefile.am
>Locally modified   scripts/libtoolcp
>Locally modified   src/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   tests/CompilerOptionsTests/testCpreprocessorOption/Makefile.am
>Locally modified   tutorial/traversalShortCircuit.C


	
2007-01-15 Dan Quinlan 0.8.10a
	* Added support to fix "-D DEFINE_ERROR_WITH_SPACE"
	  as opposed to "-DDEFINE_OK_WITHOUT_SPACE".  This
	  caused many Plum Hall tests to fail. Orphaned option.

	* Added support for "signed char" within EDG/Sage translation.

	* Added libtool support (work by Peter Collingbourne)

	* Added portability to Cygwin (by Peter Collingbourne).
	
	* Added portability to OSX (by Peter).  Still have OSX asm
	  commands using non-X86 registers to fix.

	* Comma operator get_type() now implemented, but used to use
	  SgBinaryOp::get_type() which returns the type of the lhs.
	  But the comma operator should return the type of the rhs, so 
	  a SgCommaOp::get_type() function was implemented to enfoce this.

	* SgPntrArrRefExp::get_type() fixed to return SgTypeChar
	  (previously it triggered the default case which is an error).

	* Fixed null pointer to firstnondefining declaration for
	  SgClassDeclaration in case of vacuous destructor
	    (test2004_35.C).

	* Recieved Rama's and Peter's fix for
	  ROSE/projects/DocumentationGenerator/doxygenComment.lex file.
	  This now works across flex versions: FLEX-2.5.31  FLEX-2.5.33
	  FLEX-2.5.4a.  If we want to be able to test flex compatability
	  we should have FLEX-2.5.31  FLEX-2.5.33 installed locally. We
	  most commonly use FLEX-2.5.4a for development work within ROSE.
	  Note that version number of flex are misleading: 
	     FLEX-2.5.4a released June 27, 1997
	     FLEX-2.5.31 released March 3, 2003
	     FLEX-2.5.33 released February 21, 2006
	  What were they thinking?!

	* Fixed name qualification use in C. Bug report from IBM
	  demonstrated that name qualification was leaking into the C code
	  generation.
	
	* Completely reimplemented name qualification support within the
	  code generation. A number of test codes demonstrated that the
	  existing system had some fundamental problems and the support in
	  EDG for name qualification did appear to be complete.

	* Fixed non-defining function declarations to only add symbols to
	  the local scope if the scope suports definingFunctionDeclarations
	  (supportsDefiningFunctionDeclaration() == true).

	* Added valid endOfConstruct file info to SgExpression IR nodes.
	  this was previously NULL for nearly all expression IR nodes.

	* Fixed position information for the startOfConstruct file info
	  (source position information) for LOTS of expressions. Fixed
	  endOfConstruct inforamtion for statements and expressions. The
	  handling of source position information in the EDG/Sage III
	  translation was completely rewritten to provide a more precise
	  and modular implementation.

	* Added Jeremiah's suggestion (and patch) to optionally allow
	  most "unions" in EDG to be "structs" so that we can better
	  debug the EDG/Sage III translation. This is now a configure
	  option (see configure --help).

	* Fixed EDG to allow std::size_t instead of size_t type as new
	  operator's parameter. The new operator for GNU 3.4.x is 
	  defined this way and EDG trapped it out as an error in its 
	  internal testing.  EDG's decls.C was modified and comments added.

	* Fixed semantics of where set_parent() is called. It used to be
	  called within the access function (several years ago), this was
	  fixed to permit these access function to be side-effect free
	  (except where the set_<name> function updated the p_<name>
	  variable).  However, this removed the semantics from numerous
	  function which had previously called the access functions.
	  The reest some of this semantic behavior (for example
	  constructors shoudl likely set the parameters of their input
	  arguments) mane calls to set_parent() have been explicitly
	  added.  They have been in the SgExpression IR nodes (but not
	  uniformally), this is not uniform, plus it is extended to 
	  be done in the lowest level AST editing functions (e.g.
	  member functionsof the IR nodes; such as replace_expression(),
	  etc.).  This is done now for SgStatements and SgExpressions.
	  this general fix to the semantics makes it easier to build code
	  within transformations.  The function to test and reset the 
	  parents within the post-processing of the AST will check these
	  setting so make sure they are consistant with the AST
	  traversal's definition of the AST (very important to us!).

	* Added interface to SgLocatedNode to mark IR nodes as compiler
	  generated, frontend specific, output in code generation,
	  source position unavailable in frontend.  These are 
	  typically set in the Sg_File_Info, but now we have two for
	  SgStatement, and three for SgExpression, this move helps make
	  the marking of IR nodes uniform (this is also tested now as
	  well).

	* Disallowed __SIZE_TYPE__ and __PTRDIFF_TYPE__ to be defined by EDG
	  and let them be set by the backend compiler (within the ROSE
	  configuration step). These are 32-bit and 64-bit specific.

	* Added traversal to adjust/reset/fixup the Sg_File_Info objects 
	  of parent nodes to be consistant with the extrema of source
	  position information of their children. This permits more
	  accurate line and column number information to be generated more
	  consitantly.  This was later modified to restrict the resetting
	  of source position by children to SgBasicBlock IR nodes
	  (specifically the source position of an IR node cannot be
	  propogated beyond its scope; this avoid errors propogating to
	  far from there original source).

	* Fought with the 100 character Posix limitation for TAR (now 
	  enforced by GNU tar 1.14, used in new versions of Linux).
	     1) Removed the project/containerParallelization project that
	        was outdated and had several problem files.
	     2) Renamed files in ROSE/ROSE_ResearchPapers
	     3) Removed exampleTranslators/documentedExamples/astProcessingExamples
	        (these are old examples not referenced from anywhere and 
	        redundant with some of the tutorial examples (there the
	        exaxt same examples are presented).
	     4) Removed some of the filenames from:
	        ROSE/src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/distfiles.txt
	        (only those that were a problem).

	* All documentation moved to PDF (using pdflatex). All the figures
	  generated and maintained interally are not saved as pdf files as
	  well. All references to Postscript documentation has been
	  removed and all use of latex2html has been eliminated (it
	  never worked well enough). This is done in preparation for
	  the release of ROSE documentation on the web.

	* Modified AstInterface.C to use unique names (instead of
	  "_astInterface_Tmp.c" so that parallel testing of the 
	  loop processor could be done safely (failed infrequently).

	* Modified the COPYRIGHT notice to make it more clear that ROSE
	  is distributed under BSD license by LLNL.

	* Fixed numberous bugs related to name qualification as a result
	  of the new implementation.

	* Fixed the OpenMP compiler (built by Liao) using ROSE. Numerous
	  details.  Tests of the OpenMP compiler are now run and only the
	  execution of the tests are effected by the setup of the Omni
	  OpenMP runtime system at configure time.  This assures that
	  Liao's work will be regularly tested.

	* Fixed Makefiles for testing of A++, which caught an error.
	  A++ is now regularly tested within ROSE.  The previous 
	  steps to remove this testing were a mistake.

	* Fixed secondary declaration source position information
	  (obtained from a different location in the EDG AST).

	* Fixed name qualification for function parameters. Used
	  to return the qualified name associated with the function
	  but should have stopped the recursion through scopes at
	  the SgFunctionDefinition.  This was handled by implementing 
	  a special purpose SgFunctionDefinition::get_qualified_name()
	  member function that returns an empty name (same as for the 
	  SgBasicBlock IR node).

	* Fixed where name qualification was being done for "C" code.

	* Fixed where global qualifiers were used in the code generation
	  for SgInitializedName object in SgVariableDeclaration IR nodes.
	  
	* Fixed name qualification for the base type of typedefs
	  (previously omitted under the new rewrite of name
	  qualification).  This bug was masked by the generation of
	  class specifiers where they were not required for C++.

	* Tried to eliminate use of class specifier in typedefs for C++,
	  but the information about where they are required is not set
	  properly in EDG (likely only based on the more complex rules
	  that can cause the class specifier to require rather than if
	  it is expect in the source code.  This will require more help
	  from the parse tree to establish explicit use in the source
	  code.

	* Added file name extension support (work by Dan and Rama).
          ROSE now recognizes a multitude of filename extensions,
          like c, C, cxx, cpp, c++, cp, C. This also includes:
          (1) proper recognition of a file as C language or C++ language
	  file and (2) proper actions and error-messages for what to do on
          case-(in)sensitive systems. In both of the above, "proper" means
	  conformant to GNU gcc and g++, and to an extent to EDG.

	* Removed specification of __STDC_HOSTED__ from generated file:
	  rose_edg_required_macros_and_functions.h (which containes
	  required macro definitions and function declarations (often for
	  builtin functions) required to match EDG frontend with the
	  backend compiler.  Parts of this file are automatically
	  generated specific to the requirements of the backend compiler
	  used with ROSE (set at configure time for ROSE).

	* Modified configure script to process include directories in
	  the background (simply by using "&"). This greatly improved 
	  the performance of of the configure step on parallel machines 
	  (multi-core or multiprocessor).
	       21.67user 35.41system 0:55.64elapsed 102%CPU (serial)
	       14.25user 20.75system 0:36.82elapsed 95%CPU (parallel)

	* Turned on warnings for compilation of ROSE (new default value).
	  To turn these off specify --with-CXX_WARNINGS="" and 
	  --with-C_WARNINGS="".  For the intel compiler we turn on 
	  additional options -Wp64 (for 64-bit conversion warnings)
	  and -Wcheck (additional warnings).

	* Removed old use of macro switch to use include files with and
	  without the ".h" suffix.  Modern C++ compilers don't have this
	  problem, I think.  This simplifies the code and makes it
	  clearer.

	* Added BOOST_LIB_SUFFIX to handle boost specific suffic codes on
	  all their libraries (e.g. "gcc34" for GNU 3.4.x built library).


	* Refixed the GNU tar problem to detect use of GNU tar 1.14 at 
	  configure time and skip the use of the "-o" option.  This is
	  required for 32 bit machines and required to not be there for 64
	  bit machines if we want to avoid 100 char limits on filenames.
	  This forces use of posix, which contrary to what I previously
	  though has unlimited absolute path lengths.

	* Added configure option to permit optional longer internal tests
	  using "make check".  The default is to do shorter tests.
	  ROSE developers should use the longer tests for development
	  but users are not required to run such long tests (which can
	  be a problem on even very new parallel multi-core processors).

	* Intel compiler does not have an libxml2 library and so we get
	  the error message "IPO link: can not find -lxml2", this is not
	  a problem for the GNU compilers which file the libxml2.so in
	  /usr/libs by default.

	* Added "-restrict" option to backend when using icc or icpc.
	  This is required to process the "restrict" keyword.

	* Current Problems:
	   1) Wave implementation of preprocessor directive handling
	      is not robust (see Cxx_tests/test_CplusplusMacro_Cpp.C).
	      Not significant issue, this is the inital release of this
	      work and it will require at least one more iteration
	      (Andreas is working on this).
	   2) Intel version using libxml2 library fails for 64bit only
	      (Intel error "can't find libxml2 library".  Not much to do 
	      about this but build a special version of xml2 using Intel 
	      compiler and fix the configuration to point to it.
	   3) Intel compiler has different rules for name qualification
	      (which are more strict than GNU so we still have a few
	      errors).  See test2003_09.C for example of over
	      qualification which fails for icpc, but passes for 
	      GNU g++ 3.4.x compiler. This fails for both 32bit and 64bit
	      platforms. This will not be fixed in this release.
	   4) Intel compiler (32bit) fails to compile gnerated code by 
	      OpenMP compiler (for a few cases).

	* Fixed p_linkage to be a std::string instead of char*
	  (required for for gnu g++ 4.1.2 which was sensitive to 
	  the use of this internally, which allowed the AST merge to work
	  with the 53 file smg2000 application).
	

********* TESTED with **************
(*)  automake (GNU automake) 1.9.5
(*)  autoconf (GNU Autoconf) 2.59
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 1.875c
(*)  doxygen 1.3.8
(*)  dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
(*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   COPYRIGHT
>Locally modified   ChangeLog
>Locally modified   EMAIL_INTRODUCTION
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   rose.docs.in
>Locally modified   rose_config.h.in
>Locally modified   config/EDG.m4
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/choose-backend-compiler.m4
>Locally modified   config/compiler-defs.m4
>Locally modified   config/create_system_headers
>Locally modified   config/generate-backend-compiler-specific-headers.m4
>Locally modified   config/rose_edg_required_macros_and_functions.h.in
>Locally modified   config/use_edg_source_code.m4
>Locally modified   config/wave.m4
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Dan/C99_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/C_subset_of_Cxx_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/C_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/C_tests/gconv_info.c
>Locally modified   developersScratchSpace/Dan/Cxx_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/Cxx_tests/inputForLoopLocator.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_03.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_06.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_10.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_11.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_12.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_13.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_16.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_17.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2001_27.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2003_09.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2003_28.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2003_38.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_10.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_110.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_113.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_120.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_121.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_127.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_129.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_130.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_132.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_133.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_134.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_140.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_141.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_143.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_145.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_146.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_148.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_149.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_15.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_151.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_154.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_157.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_158.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_160.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_24.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_33.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_35.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_60.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_62.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_64.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_65.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_68.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_73.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_77.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_78.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2004_85.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_01.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_02.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_03.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_06.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_07.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_103.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_11.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_110.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_126.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_128.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_129.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_13.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_130.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_131.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_132.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_133.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_134.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_136.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_137.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_138.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_139.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_140.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_142.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_144.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_147.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_150.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_152.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_153.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_156.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_161.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_162.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_17.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_171.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_179.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_181.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_185.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_195.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_196.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_205.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_27.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_28.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_29.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_30.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_31.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_34.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_35.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_36.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_39.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_42.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_47.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_50.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_55.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_57.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_63.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_66.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_68.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_80.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_82.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_83.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_87.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_89.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_91.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_93.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_95.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2005_98.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_02.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_04.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_05.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_06.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_102.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_117.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_118.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_120.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_122.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_123.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_124.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_14.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_16.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_18.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_20.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_33.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_33.h
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_40.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_41.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_42.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_79.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_84.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_87.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_92.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_93.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_95.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_96.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_98.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test2006_99.C
>Locally modified   developersScratchSpace/Dan/Cxx_tests/test_CplusplusMacro_Cpp.C
>Locally modified   developersScratchSpace/Dan/ExpressionTemplateExample_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/PythonExample_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/RoseExample_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/UPC_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/boost_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/colorAST_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/copyAST_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/mergeAST_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/unparseToString_tests/Makefile.am
>Locally modified   developersScratchSpace/Dan/unparseToString_tests/unparseToString_Type.C
>Locally modified   docs/Makefile.am
>Locally modified   docs/Rose/AstProcessing.tex
>Locally modified   docs/Rose/AstRewrite.tex
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/ProgramAnalysis.tex
>Locally modified   docs/Rose/QueryLibrary.tex
>Locally modified   docs/Rose/SageIII.tex
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/developersAppendix.tex
>Locally modified   docs/Rose/gettingStarted.tex.in
>Locally modified   docs/Rose/glossary.tex
>Locally modified   docs/Rose/introduction.tex
>Locally modified   docs/Rose/loopTransformDoc.tex
>Locally modified   docs/Rose/lu.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/mm.tex
>Locally modified   docs/Rose/overviewOfRose.tex
>Locally modified   docs/Rose/preface.tex
>Locally modified   docs/Rose/rose.html.in
>Locally modified   docs/Rose/tridvpk.tex
>Locally modified   docs/Rose/writingYourFirstTranslator.tex
>Locally modified   docs/Rose/Tutorial/ASTGraphGenerator.tex
>Locally modified   docs/Rose/Tutorial/AST_PDF_Generator.tex
>Locally modified   docs/Rose/Tutorial/Makefile.am
>Locally modified   docs/Rose/Tutorial/buildCFG.tex
>Locally modified   docs/Rose/Tutorial/buildCG.tex
>Locally modified   docs/Rose/Tutorial/customGraphs.tex
>Locally modified   docs/Rose/Tutorial/gettingStarted.tex.in
>Locally modified   docs/Rose/Tutorial/howToContribute.tex
>Locally modified   docs/Rose/Tutorial/introduction.tex
>Locally modified   docs/Rose/Tutorial/loopOptimization.tex
>Locally modified   docs/Rose/Tutorial/tutorial.tex.in
>Locally modified   docs/Rose/Tutorial/wholeGraphAST.tex
>Locally modified   docs/testDoxygen/Makefile.am
>Locally modified   docs/testDoxygen/ProjectDoneList.txt
>Locally modified   docs/testDoxygen/ProjectToDoList.docs
>Locally modified   docs/testDoxygen/SgLabelStatement.docs
>Locally modified   docs/testDoxygen/SgThrowOp.docs
>Locally modified   docs/testDoxygen/SgType.docs
>Locally modified   exampleTranslators/documentedExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/Makefile.am
>Locally modified   projects/DocumentationGenerator/Makefile.am
>Locally modified   projects/DocumentationGenerator/README
>Locally modified   projects/DocumentationGenerator/classifyDeprecated.C
>Locally modified   projects/DocumentationGenerator/docLint.C
>Locally modified   projects/DocumentationGenerator/doxygenComment.lex
>Locally modified   projects/DocumentationGenerator/generateDocsHeaderFile
>Locally modified   projects/DocumentationGenerator/sageDoxygen.C
>Locally modified   projects/DocumentationGenerator/sageDoxygen.h
>Locally modified   projects/OpenMP_Translator/Makefile.am
>Locally modified   projects/OpenMP_Translator/Makefile.in
>Locally modified   projects/OpenMP_Translator/ompTranslator.C
>Locally modified   projects/OpenMP_Translator/tests/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/cvalidationsuite/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/cvalidationsuite/omp_threadprivate.c
>Locally modified   projects/OpenMP_Translator/tests/developmentTests/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/epcc-c/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/BT/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/CG/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/EP/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/FT/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/IS/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/LU/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/MG/Makefile.am
>Locally modified   projects/OpenMP_Translator/tests/npb2.3-omp-c/SP/Makefile.am
>Locally modified   projects/dataStructureGraphing/GenGeneration.C
>Locally modified   projects/highLevelGrammars/AbstractionAttribute.C
>Locally modified   projects/programModeling/memoryAccessModel.C
>Locally modified   projects/roseHPCToolkit/src/Makefile.am
>Locally modified   scripts/Makefile.am
>Locally modified   scripts/copyWebPages
>Locally modified   scripts/rose_regression_cc
>Locally modified   scripts/rose_regression_cxx
>Locally modified   scripts/rsync_commands.txt
>Locally modified   src/Makefile.am
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.C
>Locally modified   src/3rdPartyLibraries/MSTL/Makefile.am
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/configure.in
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/distfiles.txt
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkprogs.inc
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_file.h
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_output.c
>Locally modified   src/3rdPartyLibraries/coco/cplus2/Makefile.am
>Locally modified   src/3rdPartyLibraries/coco/sources/crf.c
>Locally modified   src/3rdPartyLibraries/coco/sources/crf.h
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/grammarAST_FileIoSource.code
>Locally modified   src/ROSETTA/src/Makefile.am
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/buildStorageClasses.C
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/nonTerminalList.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/terminalList.C
>Locally modified   src/ROSETTA/src/terminalList.h
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/fortranCodeGeneration/Makefile.am
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparse_format.h
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_support.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/lib_src/eh.h
>Locally modified   src/frontend/EDG/EDG_3.3/lib_src/vtbl.h
>Locally modified   src/frontend/EDG/EDG_3.3/misc/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/attribute.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/basics.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/decls.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/defines.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/defines.h.win32
>Locally modified   src/frontend/EDG/EDG_3.3/src/error.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/exprutil.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/float_pt.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_def.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/inline.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/lexical.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/literals.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/lower_il.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/lower_name.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/pch.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/pragma.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/preproc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/scope_stk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/scope_stk.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/statements.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/symbol_tbl.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/sys_predef.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/targ_def.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/decls.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/error.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/float_pt.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/lower_name.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/preproc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/scope_stk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/sys_predef.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageMacros.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.h
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/advanced_preprocessing_hooks.h
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/attach_all_info.C
>Locally modified   src/frontend/SageIII/attributeListMap.h
>Locally modified   src/frontend/SageIII/manglingSupport.C
>Locally modified   src/frontend/SageIII/manglingSupport.h
>Locally modified   src/frontend/SageIII/preproc.C
>Locally modified   src/frontend/SageIII/preproc.lex
>Locally modified   src/frontend/SageIII/rose_attributes_list.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.h
>Locally modified   src/frontend/SageIII/sage3.h
>Locally modified   src/frontend/SageIII/astFileIO/Makefile.am
>Locally modified   src/frontend/SageIII/astFileIO/StorageClassMemoryManagement.C
>Locally modified   src/frontend/SageIII/astFileIO/StorageClassMemoryManagement.h
>Locally modified   src/frontend/SageIII/astFixup/AstFixup.h
>Locally modified   src/frontend/SageIII/astFixup/Makefile.am
>Locally modified   src/frontend/SageIII/astFixup/fixupDeclarations.C
>Locally modified   src/frontend/SageIII/astFixup/fixupFunctionDefinitions.C
>Locally modified   src/frontend/SageIII/astFixup/fixupInClassDataInitialization.C
>Locally modified   src/frontend/SageIII/astFixup/fixupStorageAccessOfForwardTemplateDeclarations.C
>Locally modified   src/frontend/SageIII/astFixup/fixupforGnuBackendCompiler.C
>Locally modified   src/frontend/SageIII/astFixup/removeInitializedNamePtr.C
>Locally modified   src/frontend/SageIII/astMerge/Makefile.am
>Locally modified   src/frontend/SageIII/astPostProcessing/Makefile.am
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.C
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.h
>Locally modified   src/frontend/SageIII/astPostProcessing/checkIsModifiedFlag.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDeclarations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupNames.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupNames.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupNullPointers.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupSymbolTables.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupTemplateInstantiations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markCompilerGenerated.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateSpecializationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTransformationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/processTemplateHandlingOptions.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetParentPointers.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetTemplateNames.C
>Locally modified   src/frontend/SageIII/docs/ProjectToDoList.docs
>Locally modified   src/frontend/SageIII/docs/SgAsmStmt.docs
>Locally modified   src/frontend/SageIII/docs/SgClassNameRefExp.docs
>Locally modified   src/frontend/SageIII/docs/SgConstructorInitializer.docs
>Locally modified   src/frontend/SageIII/docs/SgDeleteExp.docs
>Locally modified   src/frontend/SageIII/docs/SgExpression.docs
>Locally modified   src/frontend/SageIII/docs/SgFunctionDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgInitializedName.docs
>Locally modified   src/frontend/SageIII/docs/SgLabelStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgNewExp.docs
>Locally modified   src/frontend/SageIII/docs/SgScopeStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgStorageModifier.docs
>Locally modified   src/frontend/SageIII/docs/SgThrowOp.docs
>Locally modified   src/frontend/SageIII/docs/SgType.docs
>Locally modified   src/frontend/SageIII/sageInterface/Makefile.am
>Locally modified   src/frontend/SageIII/sageInterface/sageInterface.C
>Locally modified   src/frontend/SageIII/sageInterface/sageInterface.h
>Locally modified   src/frontend/SageIII/virtualCFG/Makefile.am
>Locally modified   src/frontend/SageIII/virtualCFG/virtualCFG.C
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.C
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.h
>Locally modified   src/midend/astDiagnostics/AstPerformance.C
>Locally modified   src/midend/astDiagnostics/AstPerformance.h
>Locally modified   src/midend/astDiagnostics/Makefile.am
>Locally modified   src/midend/astInlining/Makefile.am
>Locally modified   src/midend/astInlining/inliner.C
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.h
>Locally modified   src/midend/astOutlining/Makefile.am
>Locally modified   src/midend/astProcessing/Makefile.am
>Locally modified   src/midend/astProcessing/CocoPreprocessor/Makefile.am
>Locally modified   src/midend/astQuery/Makefile.am
>Locally modified   src/midend/astQuery/astQuery.C
>Locally modified   src/midend/astQuery/astQuery.h
>Locally modified   src/midend/astQuery/nodeQuery.C
>Locally modified   src/midend/astQuery/nodeQuery.h
>Locally modified   src/midend/astRewriteMechanism/Makefile.am
>Locally modified   src/midend/astRewriteMechanism/rewrite.h
>Locally modified   src/midend/astUtil/annotation/Makefile.am
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/Makefile.am
>Locally modified   src/midend/astUtil/astSupport/Makefile.am
>Locally modified   src/midend/astUtil/symbolicVal/Makefile.am
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicOperator.C
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.C
>Locally modified   src/midend/loopProcessing/Makefile.am
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.C
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/Makefile.am
>Locally modified   src/midend/loopProcessing/prepostTransformation/LoopUnroll.C
>Locally modified   src/midend/loopProcessing/prepostTransformation/Makefile.am
>Locally modified   src/midend/loopProcessing/slicing/Makefile.am
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/Makefile.am
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/CallGraph.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/Interface/CPPAstInterface.C
>Locally modified   src/midend/programAnalysis/Interface/Makefile.am
>Locally modified   src/midend/programAnalysis/OAWrap/Makefile.am
>Locally modified   src/midend/programAnalysis/OAWrap/SAGE2OA.C
>Locally modified   src/midend/programAnalysis/annotationLanguageParser/Makefile.am
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/Makefile.am
>Locally modified   src/midend/programAnalysis/proceduralSlicing/Makefile.am
>Locally modified   src/midend/programAnalysis/sideEffectAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/staticProgramSlicing/DataDependenceGraph.C
>Locally modified   src/midend/programAnalysis/staticProgramSlicing/Makefile.am
>Locally modified   src/midend/programAnalysis/valuePropagation/Makefile.am
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.C
>Locally modified   src/midend/programTransformation/constantFolding/Makefile.am
>Locally modified   src/midend/programTransformation/finiteDifferencing/Makefile.am
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
>Locally modified   src/midend/programTransformation/finiteDifferencing/patternRewrite.h
>Locally modified   src/midend/programTransformation/functionCallNormalization/FunctionNormalization.C
>Locally modified   src/midend/programTransformation/functionCallNormalization/Makefile.am
>Locally modified   src/midend/programTransformation/implicitCodeGeneration/Makefile.am
>Locally modified   src/midend/programTransformation/implicitCodeGeneration/defaultFunctionGenerator.C
>Locally modified   src/midend/programTransformation/implicitCodeGeneration/destructorCallAnnotator.C
>Locally modified   src/midend/programTransformation/implicitCodeGeneration/shortCircuitingTransformation.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/Makefile.am
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/controlFlowGraph.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/pre.C
>Locally modified   src/roseExtensions/SQLiteConnection/Makefile.am
>Locally modified   src/roseExtensions/databaseConnection/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRGui/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRTree/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRoseLib/Makefile.am
>Locally modified   src/roseSupport/Makefile.am
>Locally modified   src/roseSupport/templateSupport.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/utility_functions.C
>Locally modified   src/roseSupport/utility_functions.h
>Locally modified   src/util/Makefile.am
>Locally modified   src/util/setup.h
>Locally modified   src/util/commandlineProcessing/Makefile.am
>Locally modified   src/util/commandlineProcessing/commandline_processing.C
>Locally modified   src/util/commandlineProcessing/commandline_processing.h
>Locally modified   src/util/commandlineProcessing/sla++.C
>Locally modified   src/util/commandlineProcessing/sla.c
>Locally modified   src/util/commandlineProcessing/sla.h
>Locally modified   src/util/graphs/IDGraphCreate.C
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/graphs/Makefile.am
>Locally modified   src/util/stringSupport/Makefile.am
>Locally modified   src/util/stringSupport/string_functions.C
>Locally modified   src/util/stringSupport/string_functions.h
>Locally modified   src/util/support/Makefile.am
>Locally modified   tests/Makefile.am
>Locally modified   tests/tests.tex
>Locally modified   tests/CompileTests/Makefile.am
>Locally modified   tests/CompileTests/A++Code/A++_notemplates.h
>Locally modified   tests/CompileTests/A++Code/Makefile.am
>Locally modified   tests/CompileTests/A++Code/array_notemplates.C
>Locally modified   tests/CompileTests/A++Code/new_operators_notemplates.C
>Locally modified   tests/CompileTests/A++Code/partitioning.h
>Locally modified   tests/CompileTests/C++Code/Makefile.am
>Locally modified   tests/CompileTests/C_subset_of_Cxx_tests/Makefile.am
>Locally modified   tests/CompileTests/C_tests/Makefile.am
>Locally modified   tests/CompileTests/C_tests/gconv_info.c
>Locally modified   tests/CompileTests/Cxx_tests/Makefile.am
>Locally modified   tests/CompileTests/Cxx_tests/inputForLoopLocator.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_03.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_06.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_10.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_11.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_12.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_13.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_16.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_17.C
>Locally modified   tests/CompileTests/Cxx_tests/test2001_27.C
>Locally modified   tests/CompileTests/Cxx_tests/test2003_09.C
>Locally modified   tests/CompileTests/Cxx_tests/test2003_28.C
>Locally modified   tests/CompileTests/Cxx_tests/test2003_38.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_10.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_110.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_113.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_120.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_121.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_127.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_129.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_130.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_132.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_133.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_134.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_140.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_141.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_143.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_145.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_146.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_148.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_149.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_15.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_151.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_154.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_157.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_158.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_160.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_24.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_33.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_35.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_60.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_62.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_64.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_65.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_68.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_73.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_77.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_78.C
>Locally modified   tests/CompileTests/Cxx_tests/test2004_85.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_01.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_02.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_03.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_06.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_07.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_103.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_11.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_110.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_126.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_128.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_129.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_13.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_130.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_131.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_132.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_133.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_134.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_136.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_137.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_138.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_139.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_140.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_142.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_144.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_147.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_150.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_152.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_153.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_156.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_161.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_162.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_17.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_171.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_179.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_181.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_185.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_195.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_196.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_205.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_27.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_28.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_29.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_30.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_31.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_34.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_35.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_36.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_39.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_42.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_47.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_50.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_55.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_57.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_63.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_66.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_68.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_80.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_82.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_83.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_87.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_89.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_91.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_93.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_95.C
>Locally modified   tests/CompileTests/Cxx_tests/test2005_98.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_02.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_04.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_05.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_06.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_102.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_117.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_118.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_120.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_122.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_123.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_124.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_14.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_16.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_18.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_20.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_33.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_33.h
>Locally modified   tests/CompileTests/Cxx_tests/test2006_40.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_41.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_42.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_79.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_84.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_87.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_92.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_93.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_95.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_96.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_98.C
>Locally modified   tests/CompileTests/Cxx_tests/test2006_99.C
>Locally modified   tests/CompileTests/Cxx_tests/test_CplusplusMacro_Cpp.C
>Locally modified   tests/CompileTests/ElsaTestCases/std/Makefile.am
>Locally modified   tests/CompileTests/RoseExample_tests/Makefile.am
>Locally modified   tests/CompileTests/boost_tests/Makefile.am
>Locally modified   tests/CompileTests/unparseToString_tests/Makefile.am
>Locally modified   tests/CompilerOptionsTests/Makefile.am
>Locally modified   tests/CompilerOptionsTests/README
>Locally modified   tests/PerformanceTests/Makefile.am
>Locally modified   tests/roseTests/astFileIOTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/inlineEverything.C
>Locally modified   tests/roseTests/astInliningTests/pass16.C
>Locally modified   tests/roseTests/astMergeTests/Makefile.am
>Locally modified   tests/roseTests/astPerformanceTests/testPerformance.C
>Locally modified   tests/roseTests/astQueryTests/Makefile.am
>Locally modified   tests/roseTests/astQueryTests/testQuery.C
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/dgemm.C
>Locally modified   tests/roseTests/programAnalysisTests/DataFlowTest.C
>Locally modified   tests/roseTests/programAnalysisTests/TestDriver
>Locally modified   tests/roseTests/programAnalysisTests/testCallGraphAnalysis/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/pass2.C
>Locally modified   tests/roseTests/programTransformationTests/rose_pass2.C.save
>Locally modified   tests/roseTests/utilTests/Makefile.am
>Locally modified   tutorial/Makefile.am
>Locally modified   tutorial/addFunctionDeclaration.C
>Locally modified   tutorial/codeCoverage.C
>Locally modified   tutorial/customGraphGenerationWithFiltering.C
>Locally modified   tutorial/exampleMakefile.in
>Locally modified   tutorial/nestedQueryExample.C
>Locally modified   tutorial/blockingTutorial/rewriteExample1.C
>Locally modified   tutorial/blockingTutorial/rewriteExample2.C
>Locally modified   tutorial/blockingTutorial/rewriteExample3.C
>Locally modified   acmacros/choose-STL.m4
>Locally modified   acmacros/compiler-ar.m4
>Locally modified   acmacros/compiler-id.m4
>Locally modified   acmacros/support-rpath.m4
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      LicenseInformation/BSD.pdf
+Scheduled for add      LicenseInformation/BSD.rtf
+Scheduled for add      LicenseInformation/edison_group.pdf
+Scheduled for add      config/libtool.m4
+Scheduled for add      config/ltmain.sh
+Scheduled for add      config/rose_specific_complex.h
+Scheduled for add      config/support-bddbddb.m4
+Scheduled for add      config/support-edg-debugging.m4
+Scheduled for add      config/support-xml.m4
+Scheduled for add      developersScratchSpace/Dan/preprocessor.C
+Scheduled for add      developersScratchSpace/Dan/C99_tests/test2006_143.c
+Scheduled for add      developersScratchSpace/Dan/C_subset_of_Cxx_tests/test_compilerPredefines.C
+Scheduled for add      developersScratchSpace/Dan/C_subset_of_Cxx_tests/test_compilerPredefines.c
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_132.c
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_133.c
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_134.c
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_134.h
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_135.c
+Scheduled for add      developersScratchSpace/Dan/C_tests/test2006_136.c
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/README
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/X.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_128.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_129.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_130.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_131.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_137.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_138.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_139.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_140.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_141.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_142.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_143.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_144.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_145.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_146.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_147.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_148.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_149.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_150.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_151.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_152.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_153.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_154.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_155.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_156.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_157.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_158.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_159.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_160.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_161.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_162.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_163.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_164.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_165.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_166.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_167.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_168.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_169.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_170.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_171.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_172.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_173.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_174.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_175.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_176.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_177.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_178.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_179.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_180.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_181.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_182.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_183.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_184.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_185.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_186.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_187.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_187a.h
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_187b.h
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_188.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_189.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_36.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2006_36.h
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_01.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_02.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_03.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_04.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_05.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_06.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_07.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_08.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_08.h
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_09.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_10.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_11.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_12.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_13.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_14.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_15.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_16.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test2007_17.C
+Scheduled for add      developersScratchSpace/Dan/Cxx_tests/test_CplusplusMacro_C.C
+Scheduled for add      developersScratchSpace/Dan/sourcePosition_tests/Makefile.am
+Scheduled for add      developersScratchSpace/Dan/sourcePosition_tests/README
+Scheduled for add      developersScratchSpace/Dan/sourcePosition_tests/input_statementPositionInfoTest.C
+Scheduled for add      developersScratchSpace/Dan/sourcePosition_tests/statements.C
+Scheduled for add      developersScratchSpace/Dan/translator_tests/Makefile.am
+Scheduled for add      developersScratchSpace/Dan/translator_tests/bar.C
+Scheduled for add      developersScratchSpace/Dan/translator_tests/bar.h
+Scheduled for add      developersScratchSpace/Dan/translator_tests/expInstrumentor_nested_class.C
+Scheduled for add      developersScratchSpace/Dan/translator_tests/expTranslator.C
+Scheduled for add      docs/Rose/constructorDocumentation.txt
+Scheduled for add      docs/Rose/rose-processing-phases.pdf
+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1_BottomUp.pdf
+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1_Postorder.pdf
+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1_Preorder.pdf
+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1_TopDown.pdf
+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1_TopDownBottomUp.pdf
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/AST-pdf2.pdf
+Scheduled for add      projects/BinaryContextLookup/Makefile.am
+Scheduled for add      projects/BinaryContextLookup/README
+Scheduled for add      projects/BinaryContextLookup/bcl_reader.C
+Scheduled for add      projects/BinaryContextLookup/bcl_writer.C
+Scheduled for add      projects/BinaryContextLookup/example.g++.param
+Scheduled for add      projects/BinaryContextLookup/example.objdump.param
+Scheduled for add      projects/BinaryContextLookup/example1.C
+Scheduled for add      projects/BinaryContextLookup/example2.C
+Scheduled for add      projects/BinaryContextLookup/example3.1.C
+Scheduled for add      projects/BinaryContextLookup/example3.2.C
+Scheduled for add      projects/BinaryContextLookup/example3.in
+Scheduled for add      projects/DatalogAnalysis/Makefile.am
+Scheduled for add      projects/DatalogAnalysis/README
+Scheduled for add      projects/DatalogAnalysis/bddbddb
+Scheduled for add      projects/DatalogAnalysis/include/DBFactory.hh
+Scheduled for add      projects/DatalogAnalysis/include/Domain.hh
+Scheduled for add      projects/DatalogAnalysis/include/Relation.hh
+Scheduled for add      projects/DatalogAnalysis/include/StringMap.hh
+Scheduled for add      projects/DatalogAnalysis/include/common.hh
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/Makefile.am
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/Relations.py
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/Relations.pyc
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/Visitor.py
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/Visitor.pyc
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/main.py
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/output/RelationVisitor.cc
+Scheduled for add      projects/DatalogAnalysis/relationTranslatorGenerator/output/RelationVisitor.hh
+Scheduled for add      projects/DatalogAnalysis/src/CFGVisitor.cc
+Scheduled for add      projects/DatalogAnalysis/src/CFGVisitor.hh
+Scheduled for add      projects/DatalogAnalysis/src/ChildVisitor.cc
+Scheduled for add      projects/DatalogAnalysis/src/ChildVisitor.hh
+Scheduled for add      projects/DatalogAnalysis/src/Makefile.am
+Scheduled for add      projects/DatalogAnalysis/src/main.cc
+Scheduled for add      projects/DatalogAnalysis/src/misc.cc
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/CommonDBFactory.cc
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/CommonDBFactory.hh
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/Makefile.am
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleDomain.cc
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleDomain.hh
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleFactory.cc
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleFactory.hh
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleRelation.cc
+Scheduled for add      projects/DatalogAnalysis/src/DBFactories/TupleRelation.hh
+Scheduled for add      projects/DatalogAnalysis/tests/Makefile.am
+Scheduled for add      projects/DatalogAnalysis/tests/test.cc
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/assign_in_conditional
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/common
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/destructor_should_be_virtual
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/global_variable_declaration
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/goto_not_across_loop
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/is_child_of_parent
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/null_deref
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/rbddinfo
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/should_be_const
+Scheduled for add      projects/DatalogAnalysis/tests/datalogExamples/switch_without_default
+Scheduled for add      projects/DocumentationGenerator/comments.txt
+Scheduled for add      projects/DocumentationGenerator/sage_doxygen_documentation.C
+Scheduled for add      projects/DocumentationGenerator/small.C
+Scheduled for add      projects/DocumentationGenerator/smaller.C
+Scheduled for add      projects/NameConsistancyChecker/Makefile.am
+Scheduled for add      projects/NameConsistancyChecker/checkNameImpl.C
+Scheduled for add      projects/NameConsistancyChecker/checkNameImpl.h
+Scheduled for add      projects/NameConsistancyChecker/nameChecker.C
+Scheduled for add      projects/NameConsistancyChecker/example-styles/ale3d-style.sn
+Scheduled for add      projects/NameConsistancyChecker/example-styles/possibly-dot-com-style.sn
+Scheduled for add      projects/NameConsistancyChecker/example-styles/rose-style.sn
+Scheduled for add      projects/NameConsistancyChecker/example-styles/test-Ale3D.C
+Scheduled for add      projects/NameConsistancyChecker/example-styles/test-possibly-dot-com-style.C
+Scheduled for add      scripts/build_boost
+Scheduled for add      scripts/dotgenLetterPDF
+Scheduled for add      scripts/exampleProjectDiff
+Scheduled for add      scripts/libtoolcp
+Scheduled for add      src/ROSETTA/src/buildConstructorsWithoutSourcePositionInformation.C
+Scheduled for add      src/backend/unparser/name_qualification_support.C
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/LiteralsAsStrings.txt
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sourcePositionComputation.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sourcePositionComputation.h
+Scheduled for add      src/frontend/SageIII/preproc.lex.original
+Scheduled for add      src/frontend/SageIII/astFixup/fixupSourcePositionInformation.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupSourcePositionInformation.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctions.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctions.h
+Scheduled for add      src/frontend/SageIII/docs/SgScopeOp.docs
+Scheduled for add      src/frontend/SageIII/docs/SgStatementExpression.docs
+Scheduled for add      src/frontend/SageIII/docs/SgTypeComplex.docs
+Scheduled for add      src/frontend/SageIII/docs/SgTypeImaginary.docs
+Scheduled for add      src/frontend/SageIII/docs/SgVarRefExp.docs
+Scheduled for add      src/roseIndependentSupport/tview/README
+Scheduled for add      src/roseIndependentSupport/tview/test.txt
+Scheduled for add      src/roseIndependentSupport/tview/tview.class
+Scheduled for add      src/roseIndependentSupport/tview/tview.java
+Scheduled for add      src/roseIndependentSupport/tview/util/ColorDialog.class
+Scheduled for add      src/roseIndependentSupport/tview/util/ColorDialog.java
+Scheduled for add      src/roseIndependentSupport/tview/util/Colors.class
+Scheduled for add      src/roseIndependentSupport/tview/util/Colors.java
+Scheduled for add      src/roseIndependentSupport/tview/util/FileHandler.class
+Scheduled for add      src/roseIndependentSupport/tview/util/FileHandler.java
+Scheduled for add      src/roseIndependentSupport/tview/util/Highlight.class
+Scheduled for add      src/roseIndependentSupport/tview/util/Highlight.java
+Scheduled for add      src/roseIndependentSupport/tview/util/MyHighlightPainter.class
+Scheduled for add      src/roseIndependentSupport/tview/util/MyHighlightPainter.java
+Scheduled for add      src/roseIndependentSupport/tview/util/PosInfo.class
+Scheduled for add      src/roseIndependentSupport/tview/util/PosInfo.java
+Scheduled for add      src/roseIndependentSupport/tview/util/ScreenShot.class
+Scheduled for add      src/roseIndependentSupport/tview/util/ScreenShot.java
+Scheduled for add      src/roseIndependentSupport/tview/util/Viewer.class
+Scheduled for add      src/roseIndependentSupport/tview/util/Viewer.java
+Scheduled for add      src/roseSupport/memoryUsage.C
+Scheduled for add      tests/CompileTests/A++Code/README
+Scheduled for add      tests/CompileTests/C_tests/test2006_132.c
+Scheduled for add      tests/CompileTests/C_tests/test2006_133.c
+Scheduled for add      tests/CompileTests/C_tests/test2006_134.c
+Scheduled for add      tests/CompileTests/C_tests/test2006_134.h
+Scheduled for add      tests/CompileTests/C_tests/test2006_135.c
+Scheduled for add      tests/CompileTests/C_tests/test2006_136.c
+Scheduled for add      tests/CompileTests/Cxx_tests/README
+Scheduled for add      tests/CompileTests/Cxx_tests/X.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_128.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_129.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_130.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_131.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_137.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_138.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_139.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_140.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_141.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_142.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_143.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_144.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_145.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_146.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_147.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_148.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_149.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_150.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_151.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_152.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_153.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_154.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_155.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_156.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_157.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_158.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_159.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_160.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_161.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_162.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_163.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_164.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_165.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_166.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_167.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_168.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_169.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_170.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_171.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_172.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_173.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_174.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_175.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_176.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_177.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_178.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_179.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_180.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_181.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_182.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_183.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_184.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_185.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_186.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_187.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_187a.h
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_187b.h
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_188.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_189.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_36.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2006_36.h
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_01.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_02.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_03.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_04.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_05.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_06.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_07.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_08.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_08.h
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_09.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_10.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_11.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_12.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_13.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_14.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_15.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_16.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test2007_17.C
+Scheduled for add      tests/CompileTests/Cxx_tests/test_CplusplusMacro_C.C
+Scheduled for add      tests/CompileTests/sourcePosition_tests/Makefile.am
+Scheduled for add      tests/CompileTests/sourcePosition_tests/README
+Scheduled for add      tests/CompileTests/sourcePosition_tests/input_statementPositionInfoTest.C
+Scheduled for add      tests/CompileTests/sourcePosition_tests/statements.C
+Scheduled for add      tests/CompileTests/unparseToString_tests/unparseToString_All.C
+Scheduled for add      tests/CompilerOptionsTests/testFileNamesAndExtensions/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/testFileNamesAndExtensions/README
+Scheduled for add      tests/CompilerOptionsTests/testFileNamesAndExtensions/test_filenames.pl
+Scheduled for add      tests/CompilerOptionsTests/testFileNamesAndExtensions/test_filenames_looong_torture.pl
+Scheduled for add      tests/roseTests/astInliningTests/correct_pass16.C
+Scheduled for add      tests/roseTests/utilTests/filenameSupport.C
********* Files Scheduled to be removed *********
-Scheduled for removal  A++_Grammar.txt
-Scheduled for removal  BSD.pdf
-Scheduled for removal  BSD.rtf
-Scheduled for removal  comments.weiss
-Scheduled for removal  common_options
-Scheduled for removal  docs/Rose/compass_rose.ps
-Scheduled for removal  docs/Rose/AstProcessing/astprocessingdoc_example1.BottomUp.ps
-Scheduled for removal  docs/Rose/AstProcessing/astprocessingdoc_example1.Postorder.ps
-Scheduled for removal  docs/Rose/AstProcessing/astprocessingdoc_example1.Preorder.ps
-Scheduled for removal  docs/Rose/AstProcessing/astprocessingdoc_example1.TopDown.ps
-Scheduled for removal  docs/Rose/AstProcessing/astprocessingdoc_example1.TopDownBottomUp.ps
-Scheduled for removal  docs/Rose/HighLevelGrammars/ExampleUserCode.code
-Scheduled for removal  docs/Rose/HighLevelGrammars/GeneratedAbstractionCode.code
-Scheduled for removal  docs/Rose/HighLevelGrammars/GeneratedAbstractionRecognitionCode.code
-Scheduled for removal  docs/Rose/HighLevelGrammars/GeneratedLibraryCode.code
-Scheduled for removal  docs/Rose/HighLevelGrammars/design.tex
-Scheduled for removal  exampleTranslators/documentedExamples/simpleTranslatorExamples/AST-pdf2.ps
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/BT/rose_bt.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/CG/rose_cg.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/EP/rose_ep.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/FT/rose_ft.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/IS/rose_is.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/LU/rose_lu.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/MG/rose_mg.c
-Scheduled for removal  projects/OpenMP_Translator/tests/npb2.3-omp-c/SP/rose_sp.c
-Scheduled for removal  proposals/feedbackFromUsers/Beata-2-2-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/Beata-3-11-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/Beata-3-25-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/Beata-3-5-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/BrianWhite-2-13-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/BrianWhite-3-8-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/BrianWhite-3-9-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/Chadd-2-12-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/Chadd-3-24-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/JeremiahWillcock-5-27-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/JeremiahWillcock-7-23-2004.txt
-Scheduled for removal  proposals/feedbackFromUsers/KirkKelsey-7-11-2004.txt
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/fixupNames.C~
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/fixupNames.h~
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/fixupTypes.C~
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/fixupTypes.h~
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.C
-Scheduled for removal  src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.h
********* WARNINGS *********
********* ERRORS *********

	
2006-09-07 Dan Quinlan 0.8.9a
	* Remove predifed macros in EDG (macro.c and sys_predef.c, but not
	  in preproc.c and symbol_tbl.c).  Only removed those that don't
	  create symbols (so are not used in internal EDG processing (e.g
	  __LINE__ and __FILE__).

	* Edited the ROSE/config/compiler-defs.m4 to avoid filtering of
	  #define directives found to be in use by the backend compiler
	  (so that we could have then ALL).  They were previously filtered
	  because they caused errors within EDG (because they were
	  predefined and could not be reset).

	* Fixed test2006_94.C: unsigned, long, long long, unsigned long,
	  and unsigned long long literals now use "U", "L", ""LL", "UL",
	  "ULL" respectively within the code generation.  These will be
	  held as strings (same as floating-point literals in a later,
	  next, release (this is now complete in this release)).

	* Fixed fileInfo in case of placement option of new operator
	  to default to that of the new operator when the placement 
	  argument does not have a valid fileInfo (e.g. case of 
	  "new (std::nothrow) myVar").

	* Added GNU StatementExpression extension to ROSE (bug report from
	  Yarden).

	* Added SgAsmOp IR node to handle asm operand list in the
	  SgAsmStmt.

	* Fixed SgAsmStmt to contain an STL list of SgAsmOp IR nodes.
	  (Note that Microsoft permits multiple entries in the asm
	  statement which would force a modification of this design.)

	* Fixed GNU header file (limit) to build macro for min and max
	  values of types so that there is no overflow (for wchar_t) 
	  or conversion to integer loosing the sign (for char). The
	  correct macro is editing into place within the header file
	  translation phace of the configuration.  We don't yet know how
	  specific this might be to specific versions of GNU, but it
	  works at least for gnu version 3.3.2.
#if 0
// This definition causes a warning when used with EDG, but not with gnu 3.3.x.
#define __glibcpp_min(T) \
  (__glibcpp_signed (T) ? (T)1 << __glibcpp_digits (T) : (T)0)

#define __glibcpp_max(T) \
  (__glibcpp_signed (T) ? ((T)1 << __glibcpp_digits (T)) - 1 : ~(T)0)
#else
// DQ (7/24/2006): This is a better definition required since EDG evaluates
// the return expression indepement of the return type (as GNU appears to
// do, and thus causing EDG warnings).

// We have cast to the input type after computing the shift operation.
#define __glibcpp_min(T) \
  (__glibcpp_signed (T) ? (T)(1 << __glibcpp_digits (T)) : (T)0)

// We have made the "1" a long long and done the shift and subtraction before the cast.
#define __glibcpp_max(T) \
    (__glibcpp_signed (T) ? (T)((1LL << __glibcpp_digits (T)) - 1) : ~(T)0)
#endif

	* Tested hexadecimal floating point representation (this is a bit
	  obscure), see test2006_99.C: "float x = 0x1.fp3;".  This works
	  in EDG and ROSE was previously only a value, Rama has added the
	  string based representation required for proper source-to-source
	  handling (and required for work with the Interval Analysis guys).

	* Added string option to SgFloatVal, SgDoubleVal, and
	  SgLongDoubleVal constructors.  Previously one has to 
	  call the set_string() function to set the string value of
	  a floating point literal.

	* Fixed redundant SgBasicBlock which EDG places around "if",
	  "while", "do while", "switch" statements. This is explicitly
	  detected and the outer SgBasicBlock (already generated) is
	  stripped off.

	* Fixed case of "if(0);" which worked for C++ but fails for 
	  C (C_only mode).

	* Removed output:
 	  "SAGE III now calling gen_old_style_parameter_decls()"
	  and removed the call to gen_old_style_parameter_decls()
	  since it is a normalization that is not wanted for the AST.
	  (it should be an error as well, but likely the list that it
	  iterates over is alwas NULL, so it has not be a problem 
	  previously. Reported by Yarden.

	* Replace use of ftime with gettimeofday() in 
	  src/midend/loopProcessing/driver/TransformComputation.C 
          since ftime is now deprecated (even on linux) and replaced by
	  gettimeofday.
	// struct timeb tb;
	// ftime (&tb);
	// cout << msg << ": " << tb.time << " : " << tb.millitm << endl;
	   struct timeval tp;
	   struct timezone* tzp = NULL;
	   int status = gettimeofday (&tp,tzp);
	   assert(status == 0);
	   cout << msg << ": " << tp.tv_sec << " : " << tp.tv_usec << endl;

	* Added mechanism to report when there is too little memory for
	  system command required to run the backend compiler. This
	  happens when compiling test2006_02.C on smaller systems that
	  the students seem to have.

	* Added Rama's EDG fix to store floating point literals as
	  strings.

	* Modified SgConstructorInitializer to explicitly store the type
	  instead of the SgClassDeclaration (p_class_decl was removed).
	  This generalization (suggested by Jeremiah) allows constructors
	  of primative types (e.g. "double* x = new double();").

	* Changed PreprocessingInfo::directiveTypeName() and
	  PreprocessingInfo::relativePositionName() to be static functions
	  (instead of const member functions).

	* Added example of how to access comments and directives to ROSE
	  Tutorial.

	* Added example of how to build list of #define directives to ROSE
	  Tutorial.  Uses synthesized attributes.

	* Added fix from Markus's student specific to code generation from
	  SgExpressionRoot (previously an empty function).

	* Fixed get_type() return value for SgTypeIdOp, C++ standard
	  requires it to return "std::type_info" class.  Test placed into
	  EDG/Sage III translation to make sure that the return type is
	  generated properly.

	* Reported normalizations used with expressions are input to
	  the C++ typeid() operator. Normalization example documented in
	  the SageIII.tex file (Sage III Chapter of ROSE User Manual)
	  in section specific to source-to-source normalizations.

	* Fixed support for --edg:c (and fixed mistaken reference to
	  --edg:cc in User Manual).  This previously only partially
	  works within ROSE.

	* Fixed support for --version and --V from any ROSE translator
	  where a file name is not specified.  Previously only worked
	  when a file name was present on the command line.

	* Added support for optional marking of generated codes using
	  "#define ROSE_GENERATED_CODE" macro (which can then be tested
	  by transformation or other mechanisms).  This permits support
	  of mechanisms (tests) that would avoid translating previously
	  translatoed code.  The use of this feature is optional and it
	  is off by default; and turned on using "-rose:markGeneratedCode"
	  from the commandline of any ROSE build translator.  Information
	  about this option was alos placed into the usage() function
	  (which reports options, called by "--help" option).

	* Added support for intel compiler to ROSE/acmacros/compiler-ar.m4 
	  and ROSE/config/support-rpath.m4.

	* Removed macros from being define (filter requirements) for
	  Intel compiler (exclude list):
	     #define __cplusplus 1
	     #define __DATE__ "Aug  9 2006"
	     #define __TIME__ "19:39:55"
	     #define __EDG__ 1
	     #define __EDG_VERSION__ 304
	     #define _WCHAR_T 1

	* Fixed parsing of output from Intel compiler to generate the list
	  of #define parameters and the header file lists.

	* Fixed -rose:C option to not set turn on C99 mode by accident
	  (use -rose:C99 or -rose:C99_only (these are the same)).

	* Fixed #pragma indent "", which has some some strange quoting
	  rules that are relaxed in GNU but more strict in Intel.

	* Fixed asm command: registers must have lower case names for
	  Intel compiler, but case is unimportant for GNU.

	* Fixed _Complex within C99 to both store the precision of the
	  complex type (float, double, long double) and put it out as
	  required for the code generation (before or after the _Complex
	  keyword; I have selected before).  Gnu is relaxed on this
	  subject and "_Complex x;" is enough, but Intel requires
	  a precision (floating point type name) "float _Complex x;".
	  Note that Intel also permits "_Complex float x;", but the
	  grammar would seem to document "float _Complex x;" as prefered.

	* Added #define __NO_STRING_INLINES macro to the exclude list for
	  when Intel compilers are used.

	* Fixed ROSE to permit use of Intel icc and icpc compilers to both
	  compile ROSE and serve as backend compilers for ROSE generated
	  code. Passes tests in my development directory.

	* Fixed ROSE/scripts/dotgen, dotgen2, and dotgenLetter; to test
	  for existence of GraphViz "dot" program so that ROSE can be
	  independent of the existance of "dot".  Requested by people
	  using ROSE and not interested in a long list of dependences :-).

	* Fixed SgConstructorInitializer for case of "new int()" does not
	  have a class declaration and as a result we have no way of
	  identifying that it is int type vs. any other primative type.
	  This was part of the use of SgDefaultType before a change
	  suggested by Jeremiah.  This class now stroes the type
	  explicitly and computes the class declaration where possible.
	  As a result the constructor parameters have been changed,
	  slightly.

	* Added tutorial example showing how to find the #define
	  directives.

	* Fixed relational operators in C to return SgTypeInt while in C++
	  they return SgTypeBool. Previously ROSE returned SgTypeBool
	  for both C and C++.  We fixed this for the case of C.

	* Fixed a few minor reported problems by Valgrind (now runs
	  cleanly; again).

	* Documented problem reported by Liao specific to why "class" does
	  not work in a *.C program compiled using -rose:C_only mode.
	  In the ROSE User Manual, on C++ modes (as I recall).

	* Fixed get_type() for SgStatementExpression which was not quite
	  correct, it returned SgTypeVoid and should instead have returned
	  the type of the last expressionStatement, if it exists, else
	  return SgTypeVoid.  so re return the default all the time,
	  with out investigating the last statement to sse if it should be
	  used.

	* Fixed which backend compiler is used by "-E" option when
	  compiling with "-rose:C_only" (previously called g++
	  regardless of if "-rose:C_only", and it should be calling
	  "gcc".

	* Fixed ROSE version commandline option "-rose:version" which
	  failed too easily (required filename to be specified!).

	* Added option to permit generated code to be marked with 
	  "#define ROSE_GENERATED_CODE" within the output code (requested
	  by Yarden at IBM).

	* Added test in EDG/Sage translation to verify that typeid()
	  returns type "const std::type_info" class.

	* Added Gary's qmtest scripts and documentation (to ROSE User
	  Manual).

	* Added Jochen's AST File I/O modifications.  Now the IR node
	  destructors have a valid body (automatically generated by
	  ROSETTA). Jochen's modifications handle where the memory pools
	  are cleaned up after file I/O (and before new files are read).
	  The destructors are no longer called on each node of the IR in
	  the memory pool since by definition (recent redefinition) the
	  destructor for an IR node can call delete on any of its data
	  members (this is controled in the definition or the IR, input
	  to ROSETTA).  Only parts of the IR node that are not traversed 
	  as part of the AST are deleted, so that a a tree traversal
	  calling delete at each IR node is sufficient to delete the AST
	  (except for share IR nodes such as types which ahve to be
	  cleaned up more directly; via memory pools).	Comment from
	  Jochen:
	     The problem was the deletion of the memory pools,
	     before reading in a new AST (also used for the AST
	     compression)! As the destructors work, a deletion started on
	     the root of an AST should delete all IR Nodes connected with.
	     Thus, I skipped my deletion and just call delete on the roots
	     of the stored ASTs. However, afterwards, I still have to call
	     clearMemoryPool, which does now only reset the freepointers
	     to be a ordered linked list without any jumps in it.
	
	* Fixed "g++: g++-E: No such file or directory" error in 
	  ROSE/tests/CompilerOptionTests/testCpreprocessorOption
	  directory. Needed a space between the compiler name and the "-E"
	  option.  Also fixed up code ti use the configure commandline
	  variable BACKEND_CXX_COMPILER_NAME_WITH_PATH and 
	  BACKEND_C_COMPILER_NAME_WITH_PATH.

	* Fixed SgAsmStmt case that not handled properly in sageInterface
	  function as required by AstCopy mechanism.

	* Fixed recognition mechanism for "-o filename.o" output file
	  option. This failed when provided directory names such as:
	  "test-opm".  this is not fixed to look only at the first two
	  characters of the option.  Fixed bug with multiple
	  specificication of "-o" options as well (fixed the bug
	  introduced when this bug was first fixed).

	* Isolated tests into separate directories (in development
	  directory). So that tests for C_tests, C99_tests, Cxx_tests,
	  C_subset_of_Cxx_tests, OpenMP_C_tests, boost_tests,
	  ExpressionTemplates_tests, colorAST_tests, copyAST_tests,
	  mergeAST_tests, PythonExample_tests, RoseExample_tests,
	  unparseToString_tests, UPC_tests.

	* Fixed SgEnumDeclaration::get_mangled_name(). Failed for case of
	  unnamed enum in a typedef in C.  C_tests/math.c, problem occured
	  for any C code using math.h.

	* Added OpenMP C test codes to a special test directory
	  (OpenMP_C_tests).  Some of these demonstrated a bug and
	  the bug was fixed.

	* Unified rose_edg_macros_and_functions_required_for_gnu.h and
	  rose_edg_macros_and_functions_required_for_icc.h so that we can
	  more easily support more compilers in the future.

	* Added handing for global qualification ("::") of types in
	  variable declarations.

	* Fixed handling of complex types for C, C99, and C++. Previous
	  solutions worked either for C and C99, or for C++; but not all 
	  three language modes.

	* Added in Jeremiah's work on stateless control flow graphs
	  (virtual CFG).  Added to be more tightly bound to the AST
	  and added a test directory with some test codes.  Testing
	  currently doen only for C++, but should not make a difference.

	* Fixed bug in handling of qualified names of variables in unnamed
	  namespaces (boost_tests/test_boost_lambda.C and test2006_121.C).

	* Added support for C and C99 complex operators
	    (+,-,*,/,+=,-=,*=,/=,==,!=).

	* Added C and C99 imaginary type (SgTypeImaginary).

	* Changed name of SgComplex to SgTypeComplex for consistancy

	* Added operators for mixed complex and imaginary arithmetic
	  (+,-,*,/) which can cause complex number to be generated from 
	  operations on floating pointer values using imaginary values.
	  (still need to fixup get_type() function to return correct
	  type (SgComplex) where used for mix floating-pointer and
	  imaginary operators. Only an issue for C and C99, not C++.

	* Fixed AST copy functions to skip setting parents of SgType IR
	  nodes.  SgType IR nodes are shared and have it is enforced that
	  their paranets are NULL valued pointers.

	* Fixed bugs in ROSE specific to compiling the new Virtual CFG
	  code in ROSE with ROSE.  This is part of new tests that compile
	  parts of ROSE (collections of ROSE translators) using ROSE.
	  This makes sure that ROSE can handle all the code in a simple
	  translator which includes all of the "rose.h" and everything
	  which that includes.

	* Added file option to specify CSV formated file of performance
	  information from separate phases of the compilation. Results
	  are output from existing performance monitors and accumulated
	  in file named using option 
	  (e.g -rose:compilationPerformanceFile ROSE_PERFORMANCE_DATA.data)
	  builds a file called "ROSE_PERFORMANCE_DATA.data" and
	  accumulates performance information in the file for (one set of 
	  data points; one data point for each phase of compilation) each
	  invocation of the ROSE translator.  User may use this mechanism
	  to define additional timers for their own program analysis or
	  transformation as part of performance monitoring.  Note that
	  this was implemented using file locking so that compilations
	  may be done in parallel (using the make: -j<n> option). The
	  invocation of each translator using this option adds a single
	  line to the target file (often a rather long line).

	* Fixed integer literals (types: int, long, long long, unsigned int,
	  unsigned long, unsigned long long, short, unsigned short) to
	  be saved as a string thus reserving any hex or octal formatting
	  and any suffix modifieds (e.g. LL,ll,U,u,LLU,LLu,llU,llu).
	  This is a continuation of work done (in this release) which
	  preserved all forms of floating-point numbers as strings for 
	  similar reasons.  This was work contributed by Rama.  Only
	  string literals are normalized (multiple strings are joined
	  to form a single string).  It is not clear if complex literals
	  are an issue, since they appear to be composed of
	  floating-pointer literals.

	* Fixed memory leak in ROSE, specific to how filenames were
	  handled in the Sg_File_Info object.  This was both a memory
	  and performance issue.  Sg_File_Info::get_filename() now
	  returns a const char* and get_filenameString() returns a 
	  const string. This was a contribution by a number of people.	

	* Changed ROSE to use the new interfaces  from the CVS version of Wave
	  instead of the deprecated interfaces.

	* Added normalization of all paths. Now all '-I'-directives,
	  '-L'-directives  and filenames will use absolute paths. This
	  work has been done to support the work on the copy unparser,
	  consistent filenames when reading binary files to construct a
	  whole AST and to support work on the Wave preprocessor.
	
	* Changed stripType(..) to be more flexible.

	* Fixed a memory leak bug which caused ROSE to leak memory every time
	  Sg_File_Info::get_filename() or Sg_File_Info::get_filenameString() is called.
	  This fix has changed the interface to return a 'const' values instead of non
	  const values. In particular this bug affected the AstSimpleTraversal since it
	  calls Sg_File_Info::get_filename() on every node during the traversal.

	* Added support for custom labels on nodes and edges to the whole graph
	  AST mechanism. This new feature is now supported for both the whole graph
	  of the memory pools and the whole graph of a node subtree.

	* Added interface to AstDOTGeneration to create a dot graph of a subtree
	  of a any AST node.

	* Added interfaces in StringUtilitity to do more filesystem
	  operations.

	* Added newer version of Peter's work on the transformation to
	  make implicit operation in C++ explicit (constructor calls,
	  destructor calls, base class constructor calls, etc.).

	* Added Andreas's work to make the paths to files referenced
	  within the Sg_File_Info absolute instead of relative (even if
	  specified as relative).  If an error is detected in the
	  conversion the file reference is left as relative. Also, #line
	  directives are not modified.

	* Fixed initialization of SgClassDefinition::p_packingAlignment
	  in non-ROSETTA-generated constructor.

	* Changed inferface of char* functions to use C++ style strings:
	     static char* getWorkingDirectory ();
             static char* getSourceDirectory  ( char* fileNameWithPath );
             static char* getPathFromFileName ( const char* fileNameWithPath );

	* Fixed use of fixed length C style string which caused stack
	  corruption for long filenames. Modified type of 
	  Unparser::currentOutputFileName to be a std::string.

	* Modified Unparser::getFileName member fucntion to return
	  "std::string" instead of C style "char*".
	
	* Fixed build system for PDFlib-Lite-6.0.2rv to improve build
	  process for ROSE (Andreas and Peter).

	* Fixed configure script for the '--with-gcj' option to fail if
	  '--with-gcj=yes' and gcj is not available (Andreas and Peter).

	* Added query of the memory pools to the AST Query mechanism (Andreas).

	* Improved speed of the AST Query mechanism (Andreas).

	* Modified configuration to have default prefix (set to `pwd`).

	* Modified configuration to build backend compiler specific header
	  files in $prefix directory.  This allows the install process
	  to finish the installtion of additional required files to
	  support the build tree being eliminated if required. This
	  fixes a problem reported by Boyanna at ANL.
	
	
	


	
2006-06-27 Dan Quinlan 0.8.8a
	* Fixed AST Rewrite bug that was specific to case found in only
	  3.4.3 header files (and which caused a bug only with g++ 3.4.3).

	* Fixed bug in AST file I/O (reading 20 binary files as once).
	  This was a bug found and fixed by Jochen, he sent us the fix
	  before we ever had the problem.  What a guy!

	* Fixed uninitialized SgProject::p_attributeMechanism pointer
	  (reported by Thomas Panas).

	* Added options to SgFile::usage() member function
	  -rose:collectAllCommentsAndDirectives and
          -rose:skip_commentsAndDirectives
	  with comments about why and how they are used.

	* Fixed compilation of dot2gml to be a configure option
	  to supportwhere it forced the installation of ROSE to be
	  dependent upon versions of bison (also the version of
	  bison used in our tests of ROSE is now specified in the 
	  ChangeLog.
	  
	* Added colorization to AST graphs and mechanism for generating
	  DOT graphs of the whole graph (of which the AST is a subgraph).
	  Most of this was work done by Andreas.  not added to the ROSE
	  Tutorial yet.

	* Fixed default constructors to be makred as compiler generated.
	  Need to finish this work so that generated operator=() and
	  destructors are similarly maked as compiler generated. Also
	  there are cases where the default constructor will not be built
	  this will be fixed soon, and is a normalization within ROSE
	  that we are working on with Brian White (Cornell).

	* Added work from Andreas to support Intel C++ compiler (icpc).

	* Added Persistant attribute DOT graph support (Andreas).

	* Added a number of fixes for the support of WAVE C Preprocessor
	  from Andreas. Current WAVE support is optional at configure
	  time.

	* Added support for more generalized name mangling (plus fixes to
	  the existing name mangling).  New function supporting this is:
	  std::string SageInterface::generateUniqueName ( SgNode* node, 
	  bool ignoreDifferenceBetweenDefiningAndNondefiningDeclarations );
	  (part of the SageInterface namespace).

	* Added more support for the color graphing of the whole AST 
	  (required to support debugging of AST Merge).

	* Fixed details within the ClassHierarchyGraph example (Andreas)

	* Added initial support for new version of AST Merge (ongoing
	  work), includes On-Definition-Rule verification (not yet in 
	  Tutorial).

	* Added destructors (automatically generated by ROSETTA) based 
	  on specification within ROSETTA as to if each delete should be
	  called for each data member.  This mechanism is built and tested
	  but at the last minute had to be commented out since it
	  interfered with the AST File I/O, this will be fixed in a future
	  release.  The consequence is only that the AST leaks memory if
	  deleted (deleting the AST is rare in general but useful for 
	  specialized internal tools (e.g. AST Merge mechanism).

	* Fixed bug in comments containing line continuation characters.
	  Rare as this is, it can cause preprocessor directives to be
	  output incorrectly relative to program statements (for example
	  see test2006_83.C). Fix was in preproc.lex.

	* Fixed collection of bugs found in ROSE and reported from a 
	  number of people.

	* Fixed labeling of C and C++ style comments (it was reversed).

	* Fixed indentation of #pragma in generated code.

	* Implemented #pragma pack sub-language (conforms to GNU, but EDG
	  does not handle some IBM specific variations/extensions).

	* Build a sys/cdefs.h file specific for ROSE which includes
	  the system /usr/include/sys/cdefs.h file and then uses
	  #define __flexarr [1]
	  to redefine __flexarr from [] to [1] to avoid variable length
	    array problem that causes:
	  struct __gconv_info __cd;
	  in "/usr/include/_G_config.h" to be improperly defined.

	* Fixed code generation for un-named structs to supress name
	  qualification (previously could sometimes output global
	  qualifier).

	* Fixed compilation of stdio.h and other common header files 
	  for C++, C, and C99. Each are now a part of the standard tests.
	  Details of C handling were broken in the previous release, and 
	  C99 mode was not tested.

	* Removed generation of SgNullStatement IR nodes within EDG/Sage
	  translation.  We still want to have SgNullStatement and
	  SgNullExpression IR nodes avalailbe for use in Sage III, but
	  they were being generated in unreasonable numbers in the AST
	  because they are a bit too common within the EDG AST.

	* Fixed function throw specifications, as in:
	  void foo_0() throw();
	  void foo_1() throw(int);
	  void foo_2() throw(int,long);
	  void foo_3() throw(int,long,bool);
	  Note that these can also be applied to function pointers as in:
	// Pointer to a function with a throw specification (not supported in ROSE)
	  void (*pf)(int) throw(std::string, int);
	  void (*pf_0)(int) throw();
	  void (*pf_1)(int) throw(int);
	  void (*pf_2)(int) throw(int,long);
	  void (*pf_3)(int) throw(int,long,bool);
	  But these are not supported in ROSE yet. It is not clear where
	  the information is about them in the EDG AST :-).

	* Added support to get compiler defines automatically and 
	  generate compiler specific include files for portability
	  across different architecures and compilers.  Better support
	  for 64 bit architectures using g++.

	* Initial support for Intel C++ Compiler (icpc).

	
	  
********* TESTED with **************
(*)  automake (GNU automake) 1.6.3
(*)  autoconf (GNU Autoconf) 2.57
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 1.875c
(*)  doxygen 1.3.8
(*)  dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
(*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   README
>Locally modified   configure.in
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/acx_libxml2.m4
>Locally modified   config/compiler-defs.m4
>Locally modified   config/create_system_headers
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Dan/graphWholeAST.C
>Locally modified   developersScratchSpace/Dan/inputCode_merge.C
>Locally modified   developersScratchSpace/Dan/input_cfg.C
>Locally modified   developersScratchSpace/Dan/input_graphWholeAST.C
>Locally modified   developersScratchSpace/Dan/merge.C
>Locally modified   developersScratchSpace/Dan/test2004_150.C
>Locally modified   developersScratchSpace/Dan/test2004_91.C
>Locally modified   developersScratchSpace/Dan/test2005_168.c
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/SageIII.tex
>Locally modified   docs/Rose/Tutorial/ASTGraphGenerator.tex
>Locally modified   docs/Rose/Tutorial/customGraphs.tex
>Locally modified   docs/Rose/Tutorial/debuggingSupport.tex
>Locally modified   docs/Rose/Tutorial/wholeGraphAST.tex
>Locally modified   docs/testDoxygen/ProjectToDoList.docs
>Locally modified   docs/testDoxygen/SgClassDeclaration.docs
>Locally modified   docs/testDoxygen/SgConstructorInitializer.docs
>Locally modified   docs/testDoxygen/SgTypeDefault.docs
>Locally modified   docs/testDoxygen/SgTypedefDeclaration.docs
>Locally modified   projects/Makefile.am
>Locally modified   projects/BabelPreprocessor/sidlFunction.C
>Locally modified   scripts/cvschk
>Locally modified   src/rose.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGeneration.h
>Locally modified   src/ROSETTA/Grammar/Common.code
>Locally modified   src/ROSETTA/Grammar/Cxx_Support_Header.macro
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/grammarDestructorDefinitionMacros.macro
>Locally modified   src/ROSETTA/Grammar/grammarNewDeleteOperatorMacros.macro
>Locally modified   src/ROSETTA/Grammar/grammarReturnDataMemberPointers.macro
>Locally modified   src/ROSETTA/Grammar/grammarSourceOfIRNodesAstFileIOSupport.macro
>Locally modified   src/ROSETTA/src/Makefile.am
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/buildStorageClasses.C
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/node.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/advanced_preprocessing_hooks.h
>Locally modified   src/frontend/SageIII/astGraph.C
>Locally modified   src/frontend/SageIII/astGraph.h
>Locally modified   src/frontend/SageIII/astGraphTemplate.C
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/attributeListMap.C
>Locally modified   src/frontend/SageIII/attributeListMap.h
>Locally modified   src/frontend/SageIII/manglingSupport.C
>Locally modified   src/frontend/SageIII/preproc.C
>Locally modified   src/frontend/SageIII/preproc.lex
>Locally modified   src/frontend/SageIII/rose_attributes_list.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.h
>Locally modified   src/frontend/SageIII/sageInterface.C
>Locally modified   src/frontend/SageIII/sageInterface.h
>Locally modified   src/frontend/SageIII/astFixup/AstFixup.C
>Locally modified   src/frontend/SageIII/astFixup/fixupDeclarations.C
>Locally modified   src/frontend/SageIII/astMerge/AstMarkNamespaces.C
>Locally modified   src/frontend/SageIII/astMerge/AstMerge.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeDeclarationTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeReferenceTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeTraversals.h
>Locally modified   src/frontend/SageIII/astPostProcessing/Makefile.am
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.C
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.h
>Locally modified   src/frontend/SageIII/astPostProcessing/checkIsModifiedFlag.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDeclarations.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupNullPointers.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupSymbolTables.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupSymbolTables.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupTemplateInstantiations.h
>Locally modified   src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.C
>Locally modified   src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markCompilerGenerated.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markForOutputInCodeGeneration.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markOverloadedTemplateInstantiations.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markTransformationsForOutput.h
>Locally modified   src/frontend/SageIII/astPostProcessing/processTemplateHandlingOptions.h
>Locally modified   src/frontend/SageIII/astPostProcessing/resetParentPointers.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetParentPointers.h
>Locally modified   src/frontend/SageIII/astPostProcessing/resetTemplateNames.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetTemplateNames.h
>Locally modified   src/frontend/SageIII/docs/ProjectToDoList.docs
>Locally modified   src/frontend/SageIII/docs/SgClassDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgConstructorInitializer.docs
>Locally modified   src/frontend/SageIII/docs/SgTypeDefault.docs
>Locally modified   src/frontend/SageIII/docs/SgTypedefDeclaration.docs
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.C
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.h
>Locally modified   src/midend/astInlining/inliner.C
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/isPotentiallyModified.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.h
>Locally modified   src/midend/astProcessing/AstDOTGeneration.C
>Locally modified   src/midend/astProcessing/AstProcessing.C
>Locally modified   src/midend/astProcessing/AstTextAttributesHandling.C
>Locally modified   src/midend/astQuery/nameQuery.h
>Locally modified   src/midend/astRewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   src/midend/astRewriteMechanism/nodeCollection.C
>Locally modified   src/midend/astRewriteMechanism/prefixGeneration.C
>Locally modified   src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.h
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.C
>Locally modified   src/midend/astUtil/annotation/Makefile.am
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.h
>Locally modified   src/midend/programTransformation/constantFolding/constantFolding.C
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
>Locally modified   src/roseIndependentSupport/dot2gml/Makefile.am
>Locally modified   src/util/commandlineProcessing/commandline_processing.C
>Locally modified   src/util/commandlineProcessing/commandline_processing.h
>Locally modified   src/util/stringSupport/string_functions.C
>Locally modified   src/util/stringSupport/string_functions.h
>Locally modified   tests/CompileTests/A++Tests/test2001_11.C
>Locally modified   tests/CompileTests/C++Code/Makefile.am
>Locally modified   tests/CompilerOptionsTests/Makefile.am
>Locally modified   tests/CompilerOptionsTests/A++Code/Makefile.am
>Locally modified   tests/roseTests/astFileIOTests/Makefile.am
>Locally modified   tests/roseTests/astFileIOTests/astFileIO.C
>Locally modified   tests/roseTests/astFileIOTests/astFileRead.C
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astMergeTests/Makefile.am
>Locally modified   tests/roseTests/astMergeTests/testMerge.C
>Locally modified   tests/roseTests/astQueryTests/testQuery.C
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.du
>Locally modified   tests/roseTests/utilTests/Makefile.am
>Locally modified   tutorial/Makefile.am
>Locally modified   tutorial/addComments.C
>Locally modified   tutorial/addFunctionDeclaration.C
>Locally modified   tutorial/astFileIO_ReadMultipleASTs.C
>Locally modified   tutorial/codeCoverage.C
>Locally modified   tutorial/customGraphGenerationWithColors.C
>Locally modified   tutorial/customGraphGenerationWithFiltering.C
>Locally modified   tutorial/dataFlowGraph.C
>Locally modified   tutorial/graphTraversal.C
>Locally modified   tutorial/tauInstrumenter.C
>Locally modified   tutorial/wholeGraphAST.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      BSD.rtf
+Scheduled for add      COPYRIGHT
+Scheduled for add      README.OSX.notes
+Scheduled for add      stamp-h.in
+Scheduled for add      config/rose_edg_macros_and_functions_required_for_gnu.h.in
+Scheduled for add      config/rose_edg_macros_and_functions_required_for_icc.h.in
+Scheduled for add      config/rose_specific_cdefs.h
+Scheduled for add      developersScratchSpace/Dan/C_onlyBug.C
+Scheduled for add      developersScratchSpace/Dan/RaduBug.C
+Scheduled for add      developersScratchSpace/Dan/YardenPragmaPack.C
+Scheduled for add      developersScratchSpace/Dan/YardenPragmaPackExample.c
+Scheduled for add      developersScratchSpace/Dan/Yarden_IdentityTranslator.C
+Scheduled for add      developersScratchSpace/Dan/Yarden_client.c
+Scheduled for add      developersScratchSpace/Dan/Yarden_rose_client.c
+Scheduled for add      developersScratchSpace/Dan/bar.C
+Scheduled for add      developersScratchSpace/Dan/bar.h
+Scheduled for add      developersScratchSpace/Dan/colorTest.C
+Scheduled for add      developersScratchSpace/Dan/colorTraversal.C
+Scheduled for add      developersScratchSpace/Dan/colorTraversal.h
+Scheduled for add      developersScratchSpace/Dan/colorTraversalMemoryPool.C
+Scheduled for add      developersScratchSpace/Dan/colorTraversalVisit.C
+Scheduled for add      developersScratchSpace/Dan/functionInfo.C
+Scheduled for add      developersScratchSpace/Dan/gconv_info.c
+Scheduled for add      developersScratchSpace/Dan/inputCode_C_onlyBug.c
+Scheduled for add      developersScratchSpace/Dan/inputCode_RaduBug.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_RaduBug.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_colorTraversal.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_colorTraversal.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_functionInfo.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_functionInfo.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge.h
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge.h~
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge_alt.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge_alt.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_rewriteExampleTranslator.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_test.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_test.C~
+Scheduled for add      developersScratchSpace/Dan/inputCode_test.c
+Scheduled for add      developersScratchSpace/Dan/inputCode_test.c~
+Scheduled for add      developersScratchSpace/Dan/odr.h
+Scheduled for add      developersScratchSpace/Dan/odr_attacker.C
+Scheduled for add      developersScratchSpace/Dan/odr_base.h
+Scheduled for add      developersScratchSpace/Dan/odr_main.C
+Scheduled for add      developersScratchSpace/Dan/odr_module.C
+Scheduled for add      developersScratchSpace/Dan/odr_module.C~
+Scheduled for add      developersScratchSpace/Dan/odr_module1.C
+Scheduled for add      developersScratchSpace/Dan/odr_module1.C~
+Scheduled for add      developersScratchSpace/Dan/odr_module2.C
+Scheduled for add      developersScratchSpace/Dan/odr_module2.C~
+Scheduled for add      developersScratchSpace/Dan/rewriteExampleTranslator.C
+Scheduled for add      developersScratchSpace/Dan/stdio.c
+Scheduled for add      developersScratchSpace/Dan/test2006_57.C
+Scheduled for add      developersScratchSpace/Dan/test2006_58.C
+Scheduled for add      developersScratchSpace/Dan/test2006_59.C
+Scheduled for add      developersScratchSpace/Dan/test2006_60.C
+Scheduled for add      developersScratchSpace/Dan/test2006_61.C
+Scheduled for add      developersScratchSpace/Dan/test2006_62.C
+Scheduled for add      developersScratchSpace/Dan/test2006_63.C
+Scheduled for add      developersScratchSpace/Dan/test2006_64.C
+Scheduled for add      developersScratchSpace/Dan/test2006_66.C
+Scheduled for add      developersScratchSpace/Dan/test2006_67.C
+Scheduled for add      developersScratchSpace/Dan/test2006_68.C
+Scheduled for add      developersScratchSpace/Dan/test2006_69.C
+Scheduled for add      developersScratchSpace/Dan/test2006_70.C
+Scheduled for add      developersScratchSpace/Dan/test2006_71.C
+Scheduled for add      developersScratchSpace/Dan/test2006_72.C
+Scheduled for add      developersScratchSpace/Dan/test2006_73.C
+Scheduled for add      developersScratchSpace/Dan/test2006_74.C
+Scheduled for add      developersScratchSpace/Dan/test2006_75.C
+Scheduled for add      developersScratchSpace/Dan/test2006_76.C
+Scheduled for add      developersScratchSpace/Dan/test2006_77.C
+Scheduled for add      developersScratchSpace/Dan/test2006_78.C
+Scheduled for add      developersScratchSpace/Dan/test2006_79.C
+Scheduled for add      developersScratchSpace/Dan/test2006_80.C
+Scheduled for add      developersScratchSpace/Dan/test2006_81.C
+Scheduled for add      developersScratchSpace/Dan/test2006_82.C
+Scheduled for add      developersScratchSpace/Dan/test2006_83.C
+Scheduled for add      developersScratchSpace/Dan/test2006_84.C
+Scheduled for add      developersScratchSpace/Dan/testVector.C
+Scheduled for add      docs/testDoxygen/SgFunctionType.docs
+Scheduled for add      projects/DocumentationGenerator/Makefile.am
+Scheduled for add      projects/DocumentationGenerator/README
+Scheduled for add      projects/DocumentationGenerator/classifyDeprecated.C
+Scheduled for add      projects/DocumentationGenerator/commentObj.C
+Scheduled for add      projects/DocumentationGenerator/commentObj.h
+Scheduled for add      projects/DocumentationGenerator/correctAllComments.C
+Scheduled for add      projects/DocumentationGenerator/correctExternalComments.C
+Scheduled for add      projects/DocumentationGenerator/correctExternalCommentsAndCompile.C
+Scheduled for add      projects/DocumentationGenerator/correctExternalCommentsAndCompileQuietly
+Scheduled for add      projects/DocumentationGenerator/docLint.C
+Scheduled for add      projects/DocumentationGenerator/doxygenComment.h
+Scheduled for add      projects/DocumentationGenerator/doxygenComment.lex
+Scheduled for add      projects/DocumentationGenerator/doxygenGrammar.C
+Scheduled for add      projects/DocumentationGenerator/doxygenGrammar.h
+Scheduled for add      projects/DocumentationGenerator/generateDocsHeaderFile
+Scheduled for add      projects/DocumentationGenerator/readDoxyfile
+Scheduled for add      projects/DocumentationGenerator/sageDoxygen.C
+Scheduled for add      projects/DocumentationGenerator/sageDoxygen.h
+Scheduled for add      projects/DocumentationGenerator/testAutoDocumentation_01.C
+Scheduled for add      projects/DocumentationGenerator/testAutoDocumentation_01.docs
+Scheduled for add      projects/DocumentationGenerator/testAutoDocumentation_02.C
+Scheduled for add      projects/DocumentationGenerator/testParser01.C
+Scheduled for add      projects/DocumentationGenerator/testParser02.C
+Scheduled for add      projects/DocumentationGenerator/testParser03.C
+Scheduled for add      projects/DocumentationGenerator/testParser06.C
+Scheduled for add      projects/DocumentationGenerator/testParser08.C
+Scheduled for add      projects/DocumentationGenerator/testParser09.C
+Scheduled for add      projects/DocumentationGenerator/testParser10.C
+Scheduled for add      projects/DocumentationGenerator/testParser11.C
+Scheduled for add      projects/DocumentationGenerator/testParser12.C
+Scheduled for add      src/ROSETTA/Grammar/grammarReturnDataMemberReferenceToPointers.macro
+Scheduled for add      src/frontend/SageIII/AstAttributeDOT.C
+Scheduled for add      src/frontend/SageIII/AstAttributeDOT.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNames.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNames.C~
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNames.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNames.h~
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTypes.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTypes.C~
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTypes.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTypes.h~
+Scheduled for add      src/frontend/SageIII/docs/SgFunctionType.docs
+Scheduled for add      tests/CompilerOptionsTests/README
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/A++.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/A++_headers.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/A++_notemplates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/A++_templates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/abstract_op.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/array_domain.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/array_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/comm_man.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/comm_man.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/config.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/constants.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/d_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/data_hash.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/data_hash.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/descriptor.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/descriptor_cache.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/descriptor_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/descriptor_notemplates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/descriptor_templates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/dimension_macros.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/domain.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/domain.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/error_checking.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/expression_templates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/f_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/findNullBlockInEDG.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/i_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/index.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/index.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/index_operator_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/inline_expression_templates.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/inline_func.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/inline_support.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_aggregate.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_aggregate.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_expression.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_expression.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_operand.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_operand.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_statement.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_statement.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_task.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_task.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_taskset.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazy_taskset.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazyarray.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/lazyarray.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/machine.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/max_array_dim.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/mdi_typedef.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/new_operators_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/optimization.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/optimization.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/partitioning.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/partitioning.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/rose_abstract_op.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/rose_domain.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/static_initialization.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/test.h
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/testUnparser.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/test_bool.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/where.C
+Scheduled for add      tests/CompilerOptionsTests/testCpreprocessorOption/where.h
+Scheduled for add      tests/CompilerOptionsTests/testForSpuriousOutput/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/testForSpuriousOutput/testSpuriousOutput_1.C
+Scheduled for add      tests/CompilerOptionsTests/testForSpuriousOutput/testSpuriousOutput_2.C
+Scheduled for add      tests/CompilerOptionsTests/testHeaderFileOutput/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/testHeaderFileOutput/testHeaderFiles.C
+Scheduled for add      tests/CompilerOptionsTests/testOutputFileOption/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/testOutputFileOption/test_bool.C
+Scheduled for add      tutorial/wholeGraphFilterOnPersistantAttributes.C
********* Files Scheduled to be removed *********
-Scheduled for removal  COPYWRITE
-Scheduled for removal  ROSE_RESEARCH_PAPERS.tar.gz
-Scheduled for removal  cvs_compile_script
-Scheduled for removal  makeCVS.out
-Scheduled for removal  makeCVS_Repository
-Scheduled for removal  makeSource
-Scheduled for removal  makeTest
-Scheduled for removal  NEW_EDG_3.0/release_3.0/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/Makefile.original
-Scheduled for removal  NEW_EDG_3.0/release_3.0/README
-Scheduled for removal  NEW_EDG_3.0/release_3.0/doc/README
-Scheduled for removal  NEW_EDG_3.0/release_3.0/doc/plm.pdf
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/Changes
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/README
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/exception.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/exception.stdh
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/new.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/new.stdh
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/stdexcept.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/stdexcept.stdh
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/typeinfo.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/include/typeinfo.stdh
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/Changes
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_del.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_new.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_nodel.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_nonew.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_pdel.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/array_pnew.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/bad_alloc.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/basics.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/c99_complex.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/config.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/defines.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/delete.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/delnothrow.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/dtor_list.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/dtor_list.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/edg_exit.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/edg_exit.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/eh.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/eh_util.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/error.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/error.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/exception.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/exit.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/lib_eccp
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/main.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/main.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/memzero.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/memzero.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/munch_ctors.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/munch_dtors.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/new.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/newhandler.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/newnothrow.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/placedel.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/placenew.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/pure_virt.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/rtti.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/rtti.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/runtime.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/set_new.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/static_init.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/static_init.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/stdexcept.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/throw.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/typeinfo.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/vars.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/vec_cctor.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/vec_newdel.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/vec_newdel.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/lib_src/vtbl.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/misc/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/misc/Makefile.pcc
-Scheduled for removal  NEW_EDG_3.0/release_3.0/misc/c_deproto.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/misc/dettarg.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/misc/mk_errinfo.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/Changes
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/Makefile.pcc
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/attribute.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/attribute.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/basic_hdrs.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/basics.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/c_gen_be.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/c_gen_be.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/cfe.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/class_decl.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/class_decl.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/cmd_line.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/cmd_line.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/const_ints.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/const_ints.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/cp_gen_be.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/cp_gen_be.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/debug.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/debug.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decl_hdrs.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decl_inits.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decl_inits.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decl_spec.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decl_spec.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/declarator.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/declarator.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decls.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/decls.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/def_arg.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/def_arg.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/defines.h.hpux
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/defines.h.linux
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/defines.h.proto
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/defines.h.solaris
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/defines.h.win32
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/disambig.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/disambig.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/error.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/error.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/error_msg.txt
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/error_tag.txt
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/expr.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/expr.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/expr_hdrs.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/exprutil.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/exprutil.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/extasm.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/extasm.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/fe_common.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/fe_init.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/fe_init.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/fe_wrapup.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/fe_wrapup.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/float_pt.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/float_pt.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/folding.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/folding.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/func_def.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/func_def.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/host_envir.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/host_envir.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/host_util.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_alloc.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_alloc.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_def.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_display.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_display.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_file.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_read.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_read.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_to_str.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_to_str.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_walk.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_walk.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_write.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/il_write.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/inline.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/inline.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lang_feat.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/layout.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/layout.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lexical.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lexical.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lint.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/literals.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/literals.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lookup.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lookup.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_c99.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_c99.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_eh.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_eh.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_hdrs.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_il.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_il.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_init.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_init.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_name.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/lower_name.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/macro.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/macro.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/mem_manage.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/mem_manage.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/mem_tables.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/msinfo
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/overload.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/overload.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/pch.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/pch.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/pragma.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/pragma.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/preproc.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/preproc.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/scope_stk.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/scope_stk.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/src_seq.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/src_seq.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/statements.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/statements.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/symbol_ref.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/symbol_ref.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/symbol_tbl.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/symbol_tbl.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/sys_predef.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/sys_predef.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/targ_def.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/target.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/target.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/templates.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/templates.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_copy.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_copy.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_corresp.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_corresp.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_unit.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/trans_unit.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/types.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/types.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/version.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/walk_entry.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/Patches/README
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/Patches/patch1
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/disp/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/src/disp/Makefile.pcc
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/Changes
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/Makefile
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/Makefile.pcc
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/decode.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/decode.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/edg_decode.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/edg_munch.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/edg_munch.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/edg_prelink.c
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/edg_prelink.h
-Scheduled for removal  NEW_EDG_3.0/release_3.0/util/getopt.h
-Scheduled for removal  OmpPragmaParser/Makefile
-Scheduled for removal  OmpPragmaParser/ompparser.l
-Scheduled for removal  OmpPragmaParser/ompparser.txt
-Scheduled for removal  OmpPragmaParser/ompparser.y
-Scheduled for removal  bin/kcc_script
-Scheduled for removal  bin/rose_script
-Scheduled for removal  config/rose_edg_macros_and_functions_required_for_gnu.h
-Scheduled for removal  developersScratchSpace/Markus/Makefile.am
-Scheduled for removal  developersScratchSpace/Markus/UserDefList.h
-Scheduled for removal  developersScratchSpace/Markus/lextest.C
-Scheduled for removal  developersScratchSpace/Markus/mscomp.C
-Scheduled for removal  developersScratchSpace/Markus/onefileonly.C
-Scheduled for removal  developersScratchSpace/Markus/rev_test1.C
-Scheduled for removal  developersScratchSpace/Markus/rev_test2.C
-Scheduled for removal  developersScratchSpace/Markus/simpleA++.h
-Scheduled for removal  developersScratchSpace/Markus/test1.C
-Scheduled for removal  developersScratchSpace/Markus/test2.C
-Scheduled for removal  developersScratchSpace/Markus/test3.C
-Scheduled for removal  developersScratchSpace/Markus/test4.C
-Scheduled for removal  developersScratchSpace/Markus/test5.C
-Scheduled for removal  developersScratchSpace/Markus/test5.h
-Scheduled for removal  developersScratchSpace/Markus/test6.C
-Scheduled for removal  developersScratchSpace/Markus/test7.C
-Scheduled for removal  developersScratchSpace/Markus/test_exceptions1.C
-Scheduled for removal  developersScratchSpace/Markus/test_functiondecl1.C
-Scheduled for removal  developersScratchSpace/Markus/test_functiondecl2.C
-Scheduled for removal  developersScratchSpace/Markus/test_functiondecl2.h
-Scheduled for removal  developersScratchSpace/Markus/test_functiondecl3.C
-Scheduled for removal  developersScratchSpace/Markus/transformationOptions.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformation.atg
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformation.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformation.lst
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformationCocoCodes.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformationCocoErrorMessages.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.C
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser_Declarations.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/BodyTransformation_pp.atg
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/Makefile.am
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformation.atg
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationCocoCodes.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationCocoErrorMessages.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.C
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser_Declarations.h
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformation_pp.atg
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/compiler.frm
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/notes.txt
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/parser_c.frm
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/parser_h.frm
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/sgnode.cpp
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/sgnodep.cpp
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/sgnodep.hpp
-Scheduled for removal  developersScratchSpace/Qing/Makefile.am
********* WARNINGS *********
********* ERRORS *********



2006-04-23 Dan Quinlan 0.8.7a
	* Fixed many issues of multi-file handling
	  Backend was being called n-times for the whole list of n files!

	* Removed use of C style string (char* stuff) from SgFile and
	    SgProject IR nodes.

	* Fixed bug in compilation of Cxx_Grammar.C (first 200K lines of
	  ROSE to be compiled using ROSE).

	* Added memory pools to support fast file I/O for large
	  applications.

	* Fixed use of INFINITY in code generation (see test2005_175.C).

	* Fixed use of "unix" macro (was previously a predefined macro 
	  within EDG under linux).  This was an error, I think, since g++
	  permits it's use and so ROSE should as well. see test2005_176.C).

	* Fixed copy mechanism so that it works on whole program (still
	  fails some tests of interesting examples).  Works for trivial
	  programs currently.  Added mechanism to make sure that no shared
	  IR node is copied more than once. But the mechanism works on
	  whole projects and there is a simple way to test it directly.

	* Fixed handling of out-or-range floating point constants
	  We use the GNU compiler specific builtin  values:
	     __builtin_huge_valf()  // for float infinity
	     __builtin_huge_val()   // for double infinity
	     __builtin_huge_vall()  // for long double infinity
	     __builtin_nanf ("")    // for float quite NaN
	     __builtin_nan  ("")    // for double quite NaN
	     __builtin_nanl ("")    // for long double quite NaN
	     __builtin_nansf ("")   // for float signaling NaN
	     __builtin_nans  ("")   // for double signaling NaN
	     __builtin_nansl ("")   // for long double signaling NaN
	  If we were to have used values define in the C++ limits header
	  file the user would have had to have included this header file
	  in their application (which might or might not be true).  We
	  by using the compiler specific values directly we avoid this 
	  problem (but make the generated code GNU specific).  When
	  we generate code for other compilers we will have to address 
	  this.  Note that the ROSe generated code is GNU specific, but 
	  the ROSE implementation is not since we test for infinity, 
	  quite NaN, and signaling NaN by using general C++ mechanisms
	  (e.g. float_val->get_value() == std::numeric_limits<float>::infinity(),
	  as a conditional test for infinit value).  We just can't
	  generate such portable code unless we forced the generated
	  code to include specific header files (which would alos be
	  language dependent).  The code specific to this is in:
	     ROSE/src/backend/unparser/unparse_expr.C.

	* Fixed buffer size in lex parser to handle extreamly large
	    comments (Andreas demonstrated a code where the whole file
	    was commented out, this died due to inappropriate handling of
	    the C style comment.  The buffer size was 8K bytes, I have
	    increased the buffer size for comments and macros to 
	    10 megabyte (per comment). I have also added asserts to
	    enforce this limit so that if it is exceeded the problem will
	    be more clear.  Previously in would truncate the comment and
	    leave off the terminating "*/" so
	    it would cause an error in the generated code.  The current
	    fix expands the range of sizes for comments and enforces
	    (via ROSE_ASSERT) the the limits are observed.  There still
	    could be larger comments that we currently permit, but I 
	    am unclear as to how to make the implementation in the *.lex
	    file more robust.

	* Redefined va_start() macro:
	     from: void va_start(__builtin_va_list __builtin__x, void* __builtin__y);
	     to:   void va_start(__builtin_va_list __builtin__x, const char *__builtin__y);
	  This fixed test2005_165.C.

	* Added empty statement to be unparsed with each label
	  (SgLabelStatement). To handle the case where a label is used
	  without an associated statement ROSE will unparse:
	       "LABEL: /* empty statement */ ;"
	  to avoid generating cases without an associated statement.  The
	  "empty statement" represented by ";" is ignored and so will
	  not cause an error or change the semantics.  It seems that
	  this bug was what was preventing the code generated from f2c
	  from being compiled using ROSE (Andreas).

	* Added support for #warning in gathering preprocessor control
	  directives and comments.

	* Added support for unary plus operator

	* Fixed preproc.lex bug (see test2005_184.C and comments in
	  preproc.lex for details).

	* Added C99 support (turned on C99 support in EDG and added
	  support elsewhere within ROSE and the EDG/Sage translation).
	  It was a special problem for ROSE since the g++ implementation
	  of the complex<float>, complex<double>, and complex<long double>
	  use the GNU speicific "__complex__", "__real__", and "__imag__" 
	  type modifiers extensions; which are not supported by EDG.
	  The fix it to #define each of the type modifiers to "" and
	  then edit the complex header file to modify one of the 
	  private constructors which used the _ComplexT type (which is 
	  a typedef of a __complex__ float, double, long double type).

	* Added support for name qualification of enum values when they
	  appear in namespaces (previously worked fine for classes).
	  See test2005_183.C for example.

	* Fixed not SgCaseOption statements appearing in
	  SgSwitchStatement. The following code is legal C and C++:
	  switch(x) { int y; case 0: y = 1; break; }
	  The statement representing "int y;" was previously dropped.
	  This is now fixed, test2005_187.C has more details.

	* Fixed KOLAH bug reported by Andreas (test2005_181.C)

	* Fixed generation of correct template declaration where template
	  member functions appear in nested class (handles arbitrary depth
	  nesting now, just to be restricted to just non-templated member
	  functions of templated classes (zero depth).  See test2005_167.C
	  for more details.  Still one bug left to fix with respect to 
	  this test code (ROSE gnerates code for template instantiation 
	  that should be supressed, I will fix that later).

	* Added string to SgFloatVal, SgDoubleVal, and SgLongDoubleVal
	  classes as part of work with Andreas to record the actual
	  strings used for constants in the AST.

	* Added SgExpression* to SgValueExp class to hold root
	  of expression tree when constants are folded.  

	* Swapped order of ROSETTA's specification of the condition
	  and body in SgDoWhileStmt.  This allows the traversal
	  to visit the body first and the condition last (which is 
	  structurally more precise).  This also swaps the order of the 
	  constructor arguments, but this does not appear to be a 
	  problem for the SageIII code.  It could be a problem for
	  some user codes, but it does not appear to be a problem for any
	  that I am aware of (so far).  See test2005_114.C for details.

	* Fixed use of declarations in condition for SgSwitchStatement.

	* Fixed use of declaration for test within for loop (SgForStatement).

	* Moved data members to be generated by ROSETTA:
             static map<int, string> p_fileidtoname_map;
             static map<string, int> p_nametofileid_map;
             static int p_max_file_id;
	  Also build access function (by ROSETTA).  Modified
	  generation of Cxx_GrammarRTI.C to build operator<< for 
	  map<int,string> and map<string,int> objects.

	* Added SgQualifiedName to hold reference to scope used in
	  generating qualified names for names, types, and expressions.

	* Added SgQualifiedNameType as a wrapper for a SgNamedType
	  (identical in design to SgModifierType, SgPointerType, etc.).

	* Fixed Enum handling (definitions were output inappropriately
	  in some cases):
	     enum numbers { null }; typedef numbers local_null;
	  previously output the definition in the typedef.

	* Found the sizeof operator in the constant folded expression tree
	  and implemented the support for it in the IR, EDG/SageIII
	  translation, and the unparser.  This brings us a little closer
	  to being able to represent the original source code exactly.
	  Processing the constant folded expression tree in EDG continues
	  to be problem atic, so the robust way to handle input is with
	  this option OFF :-).  I will work on it more later.
	
	* Disabled PDFlib's auto-detect of Java, which can be re-enabled
	  by specifying '--with-java' at configure-time. Also removed
	  the verbose summary message displayed by PDFlib at
	  configure-time (work done by Rich).
	
	* Added support for switch case label ranges (see test2005_202.C).

	* Added support for calling "::operator new" and 
 	  "::operator delete" instead of just "::new" and "::delete"
	  or "new" and "delete" where they reference the global functions.
	  The case of "::operator new" shows up as a function call instead
	  of the SgNewExp IR nodes.  This is accurate.

	* Change name of "p_fileInfo" data member in SgPragma,SgFile, and
	  SgInitializedName to "p_file_info" so that automatically
	  generated functions (via ROSETTA) could be used and would match
	  the virtual Sg_File_Info* SgNode::get_file_info() member
	  function.  This avoids much redundency in access functions and
	  it was not clear why there would be two such similar functions
	  which lead to confusions.  ROSE was fixed in the few places
	  where this made a difference (nearly all in sage_gen_be.C).
	 
	* Updated ROSE/config/config.sub to permit use of ROSE on 64 bit 
	  linux machines (fix suggested by Michelle).

	* Fixed a number of places (5-7) in ROSE where pointers were cast
	  to ints (a significant problem for 64 bit machines). Reported
	  by Michelle.

	* Fixed a 3-4 places in EDG where pointers were output with %x
	  instead of %p.

	* Fixed a lot of bugs in the AST Merge mechanism, more work
	  remains (mostly worked for small problems but had not been
	  tested on larger applications).

	* Added tau specific example to ROSE/tutorial (tauInstrumenter.C).

	* Reorganized the ROSE documentation to be a self-contained 
	  directory with all HTML and Postscript documentations available
	  through valid links. Added ROSE Logo just for fun.

	* Added ROSE related publications to self-contained ROSE
	  documentation.
	
	* Added new namespace AST_FileIO with member functions 
	  IS_VALID_POINTER() and TO_BE_COPIED_POINTER(). This is
	  used in the IR node memory pool based allocation.  This 
	  the the namespace for Jochen's File I/O work. See Doxygen 
	  docs for more details.

	* Edited local copy of listings.sty (LaTeX support file)
	  to comment out us of lstpatch.sty. Also commented where
	  the change was done.  Might be required by developers
	  trying to build documentation, though thus far it has only
	  been a problem when building documentation on my laptop
	  (and not on my desktop machine).  Laptop is only ROSE
	  development platform running RedHat 4.0, others in CASC are 
	  still using RedHat 3.0, this may be the difference.
	 
	* Added typeTransformation specific example to ROSE/tutorial 
	  (typeTransformation.C).  This tutorial code demonstrates how to 
	  change floating point declarations using "float" to "double".
	  This example problem is important for FORTRAN use at LANL since
	  FORTRAN defaults to single precision where C defaults to double
	  precision.

	* Modified SgType IR nodes so that builtin_type is now a pointer
	  and all builtin types are built in the memory pools.  

	* Modified the global function type symbol tabel to be a 
	  pointer instead of a global IR nodes (in global scope).
	  Fixed access function to allocate the function type symbol table
	  if the static data member is NULL.  Static data member was added 
	  to SgNode.
	
	* Added test to make sure that there are no IR nodes allocated
	  before calling the frontend (no static constructors).

	* Added reset functions to SgModifier IR nodes to clear all
	  bits and reset to default values.

	* Fixed modifiers in the copy of the function declearation
	  held by a SgTemplateInstantiationDirectiveStatements.
	  C++ does not allow output of many modifiers (e.g. friend,
	  explicit, etc.).  Sage III represents the stucture of the
	  C++ source so function declarations referenced by a 
	  SgTemplateInstantiationDirectiveStatements must reset
	  all modifiers.

	* Removed macros from sage3.h because it effected all header files:
	       macro for "Boolean" defined as "int"
	       macro for "NULL_FILE" defined as "SgNULL_FILE"
	       macro for "NO_UNPARSE_INFO" defined as "SgNO_UNPARSE_INFO"

	* Modified generation of Sg_File_Info in tutorial to use
	  Sg_File_Info::generateDefaultFileInfoForTransformationNode().


	* Changed name of config.h to rose_config.h and it is included by
	  sage3.h.  So all source files no longer need:	
          #ifdef HAVE_CONFIG_H
             #include <config.h>
          #endif
	  Thus user's using ROSE need not include this either.  Since the
	  name has been changed there is no longer a config.h so it would
	  be incorrect to do so.  I expect this will be a problem
	  initially for users of this version of ROSE.  We could provide
	  a dummy config.h which included rose_config.h to make the 
	  transition easier, but this it would break later.

	* Fixed Control Flow Graph code (ROSE_CFG.C) to skip building 
	  empty basic blocks when confronted with
	       "int n=0; for(; n > 10; n++)"
	  where the SgForInitStatement has an empty list.  Previously
	  this case cause a NULL pointer in the AST, now fixed.  And the
	  fixed caused the empty basic block to be built.  Other empty
	  basic blocks are built in the CFG, but these are less of a 
	  problem, or at least didn't cause a bug in the PRE using
	  pass3.C.

	* Removed UnparseOrigFormat class and associated functions
	  in unparse_format.h and unparse_format.C.

	* Changed the function interface for some of the unparser functions
	  to make a pointer to a SgFile and SgProject instead of a
	  reference. The goal is to have a constistant interface as much
	  as possible.

	* Fixed output of SgLabelStatement so that if it is the last
	  statement in the scope (excluding SgNullStatement) then
	  a ";" will be output.  This is required for g++, but not for
	  EDG. I am not clear on what the standard requires here, but 
	  since g++ requires it I have fixed up the code generation.
	  The example which demonstrates this is test2005_164.C.

	* Fixed AstInterface::GetScope(SgNode*) function to use the
	  internal (non-structural) get_scope function and handled
	  the few special cases requires (input scope if SgScopeStatement
	  is alwasy correct now).

	* Fixed bug in new implementation of AST Copy Mechanism
	  (reimplented from Qing's initial work).  Forgot to 
	  copy values for SgValue expressions (at least for SgStringVal).

	* Changed SgStringVal to hold a C++ style std::string instead of a
	  C style string.  This was an overdue minor fixup to the API.
	  Now the constructor can be automatically generated by ROSETTA.

	* Added Jochen's AST File I/O, this is a significant contribution.

	* Added a number of Andrea's projects (fix this up later).
	     * Boost Wave support is added bug not working properly yet.
	     * Whole AST graph output is supported (see tutorial).
	     * Lots more stuff ...

	* Added Lingxaio's support for comments and CCP directives to 
	  be gathered for all header files (used to be supported only 
	  for the source files).

********* TESTED with **************
(*)  automake (GNU automake) 1.6.3
(*)  autoconf (GNU Autoconf) 2.57
(*)  GNU Make version 3.79.1
(**) g++ (GCC) 3.3.2
(**) gcc (GCC) 3.3.2
(**) bison (GNU Bison) 1.875c
(*)  doxygen 1.3.8
(*)  (*)  TeX (Web2C 7.3.1) 3.14159
(*)  Original LaTeX2HTML Version 2002 (1.62)
(*)  sqlite (requires g++ 3.3.2) 3.2.1

(*)  Optional for use of ROSE (by users), but required for internal ROSE development (by ROSE project team)
(**) Required for use of ROSE (and for all internal development)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   README
>Locally modified   README_CHECKIN
>Locally modified   TODO
>Locally modified   build
>Locally modified   configure.in
>Locally modified   rose.docs.in
>Locally modified   ROSE_ResearchPapers/README
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/choose-backend-compiler.m4
>Locally modified   config/compiler-defs.m4
>Locally modified   config/create_system_headers
>Locally modified   config/rose_edg_macros_and_functions_required_for_gnu.h
>Locally modified   config/support-rpath.m4
>Locally modified   developersScratchSpace/Makefile.am
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Dan/addNewFunction.C
>Locally modified   developersScratchSpace/Dan/beata.C
>Locally modified   developersScratchSpace/Dan/g++Options.txt
>Locally modified   developersScratchSpace/Dan/globalAndStaticData.C
>Locally modified   developersScratchSpace/Dan/preprocessor.C
>Locally modified   developersScratchSpace/Dan/tabExpand.C
>Locally modified   developersScratchSpace/Dan/templateInClass.C
>Locally modified   developersScratchSpace/Dan/test2004_135.C
>Locally modified   developersScratchSpace/Dan/test2004_143.C
>Locally modified   developersScratchSpace/Dan/test2004_76.C
>Locally modified   developersScratchSpace/Dan/test2005_110.C
>Locally modified   developersScratchSpace/Dan/test2005_114.C
>Locally modified   developersScratchSpace/Dan/test2005_97.C
>Locally modified   developersScratchSpace/Dan/testDOTBug.C
>Locally modified   developersScratchSpace/Markus/OmpTransformations/BodyTransformation.h
>Locally modified   developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.C
>Locally modified   developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.h
>Locally modified   developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.C
>Locally modified   docs/Makefile.am
>Locally modified   docs/README
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/designOfRose.tex
>Locally modified   docs/Rose/fd-docs.tex
>Locally modified   docs/Rose/glossary.tex
>Locally modified   docs/Rose/introduction.tex
>Locally modified   docs/Rose/loopTransformDoc.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/pre-docs.tex
>Locally modified   docs/Rose/preface.tex
>Locally modified   docs/Rose/preprocessorDesign.tex
>Locally modified   docs/Rose/requirements.tex
>Locally modified   docs/Rose/rose.cfg.in
>Locally modified   docs/Rose/AstProcessing/AstProcessing.tex
>Locally modified   docs/Rose/Tutorial/ASTGraphGenerator.tex
>Locally modified   docs/Rose/Tutorial/Makefile.am
>Locally modified   docs/Rose/Tutorial/addFunctionDeclaration.tex
>Locally modified   docs/Rose/Tutorial/addVariableDeclaration.tex
>Locally modified   docs/Rose/Tutorial/appendix.tex
>Locally modified   docs/Rose/Tutorial/buildCFG.tex
>Locally modified   docs/Rose/Tutorial/codeCoverage.tex
>Locally modified   docs/Rose/Tutorial/commandlineProcessing.tex
>Locally modified   docs/Rose/Tutorial/customGraphs.tex
>Locally modified   docs/Rose/Tutorial/dataBaseSupport.tex
>Locally modified   docs/Rose/Tutorial/debuggingSupport.tex
>Locally modified   docs/Rose/Tutorial/globalVariableHandling.tex
>Locally modified   docs/Rose/Tutorial/identityTranslator.tex
>Locally modified   docs/Rose/Tutorial/inliner.tex
>Locally modified   docs/Rose/Tutorial/instrumentationExample.tex
>Locally modified   docs/Rose/Tutorial/introduction.tex
>Locally modified   docs/Rose/Tutorial/loopOptimization.tex
>Locally modified   docs/Rose/Tutorial/loopRecognition.tex
>Locally modified   docs/Rose/Tutorial/outliner.tex
>Locally modified   docs/Rose/Tutorial/parser-docs.tex
>Locally modified   docs/Rose/Tutorial/queryLibraryExample.tex
>Locally modified   docs/Rose/Tutorial/resolveOverloadedFunction.tex
>Locally modified   docs/Rose/Tutorial/templateParameter.tex
>Locally modified   docs/Rose/Tutorial/templateSupport.tex
>Locally modified   docs/Rose/Tutorial/traversal.tex
>Locally modified   docs/Rose/Tutorial/tutorial.tex.in
>Locally modified   docs/Rose/Tutorial/tutorialMakefile.tex
>Locally modified   docs/Rose/Tutorial/typeInfoFromFunctionParameters.tex
>Locally modified   docs/Rose/Tutorial/wrapup.tex
>Locally modified   docs/testDoxygen/HowToDocumentROSE.docs
>Locally modified   docs/testDoxygen/Makefile.am
>Locally modified   docs/testDoxygen/SgCaseOptionStmt.docs
>Locally modified   docs/testDoxygen/SgClassDeclaration.docs
>Locally modified   docs/testDoxygen/SgDeclarationStatement.docs
>Locally modified   docs/testDoxygen/SgDirectory.docs
>Locally modified   docs/testDoxygen/SgDoWhileStmt.docs
>Locally modified   docs/testDoxygen/SgExprListExp.docs
>Locally modified   docs/testDoxygen/SgExpression.docs
>Locally modified   docs/testDoxygen/SgFile.docs
>Locally modified   docs/testDoxygen/SgFileInfo.docs
>Locally modified   docs/testDoxygen/SgForInitStatement.docs
>Locally modified   docs/testDoxygen/SgForStatement.docs
>Locally modified   docs/testDoxygen/SgFunctionDeclaration.docs
>Locally modified   docs/testDoxygen/SgFunctionParameterList.docs
>Locally modified   docs/testDoxygen/SgFunctionRefExp.docs
>Locally modified   docs/testDoxygen/SgFunctionTypeTable.docs
>Locally modified   docs/testDoxygen/SgIfStmt.docs
>Locally modified   docs/testDoxygen/SgLabelStatement.docs
>Locally modified   docs/testDoxygen/SgLocatedNode.docs
>Locally modified   docs/testDoxygen/SgMemberFunctionDeclaration.docs
>Locally modified   docs/testDoxygen/SgNamespaceDeclarationStatement.docs
>Locally modified   docs/testDoxygen/SgNewExp.docs
>Locally modified   docs/testDoxygen/SgNode.docs
>Locally modified   docs/testDoxygen/SgProject.docs
>Locally modified   docs/testDoxygen/SgReturnStmt.docs
>Locally modified   docs/testDoxygen/SgScopeStatement.docs
>Locally modified   docs/testDoxygen/SgSizeOfOp.docs
>Locally modified   docs/testDoxygen/SgStatement.docs
>Locally modified   docs/testDoxygen/SgSwitchStatement.docs
>Locally modified   docs/testDoxygen/SgSymbol.docs
>Locally modified   docs/testDoxygen/SgTemplateArgument.docs
>Locally modified   docs/testDoxygen/SgTemplateDeclaration.docs
>Locally modified   docs/testDoxygen/SgTemplateInstantiationDecl.docs
>Locally modified   docs/testDoxygen/SgTemplateInstantiationFunctionDecl.docs
>Locally modified   docs/testDoxygen/SgTemplateInstantiationMemberFunctionDecl.docs
>Locally modified   docs/testDoxygen/SgThrowOp.docs
>Locally modified   docs/testDoxygen/SgType.docs
>Locally modified   docs/testDoxygen/SgTypedefDeclaration.docs
>Locally modified   docs/testDoxygen/SgUnaryOp.docs
>Locally modified   docs/testDoxygen/SgVariableDefinition.docs
>Locally modified   docs/testDoxygen/SgVariableSymbol.docs
>Locally modified   docs/testDoxygen/SharedNodes.docs
>Locally modified   docs/testDoxygen/doc_example1.docs
>Locally modified   docs/testDoxygen/htmlHeaderFile.html
>Locally modified   docs/testDoxygen/test.cfg.in
>Locally modified   exampleTranslators/AstCopyReplTester/astCopyReplTest.C
>Locally modified   exampleTranslators/DOTGenerator/dotGenerator.C
>Locally modified   exampleTranslators/PDFGenerator/pdfGenerator.C
>Locally modified   exampleTranslators/defaultTranslator/defaultTranslator.C
>Locally modified   exampleTranslators/documentedExamples/AstRewriteExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/AstRewriteExamples/astRewriteExample1.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/printLoopInfo.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/MyTraversal.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/printVars.C
>Locally modified   exampleTranslators/documentedExamples/dataBaseExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/identityTranslator.C
>Locally modified   projects/Makefile.am
>Locally modified   projects/RoseStyleGuide.txt
>Locally modified   projects/BabelPreprocessor/babelPreprocessor.C
>Locally modified   projects/BabelPreprocessor/babelTransformation.C
>Locally modified   projects/BabelPreprocessor/babelTransformation.h
>Locally modified   projects/BabelPreprocessor/findMethodCalls.C
>Locally modified   projects/BabelPreprocessor/options.C
>Locally modified   projects/BabelPreprocessor/sidlFunction.C
>Locally modified   projects/BabelPreprocessor/transformationOptions.C
>Locally modified   projects/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   projects/OpenMPPreprocessor/parallelSTLQuery.C
>Locally modified   projects/arrayOptimization/ArrayAnnot.C
>Locally modified   projects/arrayOptimization/ArrayInterface.C
>Locally modified   projects/arrayOptimization/ArrayInterface.h
>Locally modified   projects/arrayOptimization/ArrayProcessor.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.C
>Locally modified   projects/containerParallelizer/ContainerTransformer.C
>Locally modified   projects/containerParallelizer/CPAnalysis/ContainerAnalyzer.C
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   projects/containerParallelizer/CPTransformation/BodyTransformationParser.C
>Locally modified   projects/containerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   projects/dataStructureGraphing/ControlStructure.h
>Locally modified   projects/dataStructureGraphing/GenGeneration.C
>Locally modified   projects/dataStructureGraphing/GenGeneration.h
>Locally modified   projects/dataStructureGraphing/helpFunctions.h
>Locally modified   projects/highLevelGrammars/AbstractionAttribute.C
>Locally modified   projects/highLevelGrammars/exampleTranslator.C
>Locally modified   projects/highLevelGrammars/highLevelGrammarGenerator.C
>Locally modified   projects/highLevelGrammars/overloadedOperatorRepresentation.C
>Locally modified   projects/roseHPCToolkit/docs/roseHPCToolkit.docs
>Locally modified   projects/simpleCallGraphAnalysis/callGraph.C
>Locally modified   projects/simpleCallGraphAnalysis/writeCallGraph.C
>Locally modified   proposals/New_Sage_Interface.txt
>Locally modified   proposals/StudentWork.txt
>Locally modified   proposals/TODO.txt
>Locally modified   scripts/cvschk
>Locally modified   src/Makefile.am
>Locally modified   src/rose.h
>Locally modified   src/testRoseLib.C
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.C
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGeneration.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGeneration.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGraphInterface.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGraphInterface.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTRepresentation.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.h
>Locally modified   src/3rdPartyLibraries/MSTL/MSTL.docs
>Locally modified   src/3rdPartyLibraries/MSTL/PDFGeneration.C
>Locally modified   src/3rdPartyLibraries/MSTL/PDFGeneration.h
>Locally modified   src/3rdPartyLibraries/MSTL/TreeTraversal.C
>Locally modified   src/3rdPartyLibraries/MSTL/TreeTraversal.h
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/configure.in
>Locally modified   src/ROSETTA/Makefile.am
>Locally modified   src/ROSETTA/Grammar/Common.code
>Locally modified   src/ROSETTA/Grammar/Cxx_GlobalDeclarations.macro
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Symbol.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/copyMemberFunction.macro
>Locally modified   src/ROSETTA/src/CxxGrammarMetaProgram.C
>Locally modified   src/ROSETTA/src/Makefile.am
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/addNonTerminal.C
>Locally modified   src/ROSETTA/src/addTerminal.C
>Locally modified   src/ROSETTA/src/constraint.C
>Locally modified   src/ROSETTA/src/constraintList.C
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/grammarTreeNode.C
>Locally modified   src/ROSETTA/src/node.C
>Locally modified   src/ROSETTA/src/nonTerminalList.C
>Locally modified   src/ROSETTA/src/nonterminal.C
>Locally modified   src/ROSETTA/src/nonterminal.h
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/storageSize.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/symbol.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/terminalList.C
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/copy_unparser.C
>Locally modified   src/backend/unparser/copy_unparser.h
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparse_format.h
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_support.C
>Locally modified   src/backend/unparser/unparse_sym.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.docs
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/backend/unparser/unparser_opt.C
>Locally modified   src/backend/unparser/unparser_opt.h
>Locally modified   src/frontend/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/documentation.docs
>Locally modified   src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/defines.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/fe_common.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/float_pt.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/lang_feat.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/mem_manage.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/sys_predef.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/target.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/trans_corresp.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/float_pt.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/mem_manage.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/sys_predef.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/trans_corresp.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageCommonSourceHeader.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/SageIII/C++_include_files.h
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.h
>Locally modified   src/frontend/SageIII/generateAST.C
>Locally modified   src/frontend/SageIII/grammarBaseClass.C
>Locally modified   src/frontend/SageIII/insert.C
>Locally modified   src/frontend/SageIII/preproc.C
>Locally modified   src/frontend/SageIII/preproc.lex
>Locally modified   src/frontend/SageIII/rose_attributes_list.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.h
>Locally modified   src/frontend/SageIII/sage3.h
>Locally modified   src/frontend/SageIII/sageInterface.C
>Locally modified   src/frontend/SageIII/sageInterface.h
>Locally modified   src/frontend/SageIII/sageSupport.C
>Locally modified   src/frontend/SageIII/stripWrapper.C
>Locally modified   src/frontend/SageIII/astFixup/AstFixup.C
>Locally modified   src/frontend/SageIII/astFixup/fixupDeclarations.C
>Locally modified   src/frontend/SageIII/astFixup/fixupFunctionDefinitions.C
>Locally modified   src/frontend/SageIII/astFixup/fixupInClassDataInitialization.C
>Locally modified   src/frontend/SageIII/astFixup/fixupStorageAccessOfForwardTemplateDeclarations.C
>Locally modified   src/frontend/SageIII/astFixup/fixupforGnuBackendCompiler.C
>Locally modified   src/frontend/SageIII/astFixup/removeInitializedNamePtr.C
>Locally modified   src/frontend/SageIII/astFixup/removeInitializedNamePtr.h
>Locally modified   src/frontend/SageIII/astMerge/AstCleanSymbolTables.C
>Locally modified   src/frontend/SageIII/astMerge/AstDelinkNamespaces.C
>Locally modified   src/frontend/SageIII/astMerge/AstFixParentTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMarkDuplicates.C
>Locally modified   src/frontend/SageIII/astMerge/AstMarkNamespaces.C
>Locally modified   src/frontend/SageIII/astMerge/AstMerge.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeDeclarationTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeReferenceTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeScopeTraversal.C
>Locally modified   src/frontend/SageIII/astMerge/AstMergeTraversals.h
>Locally modified   src/frontend/SageIII/astMerge/MergeUtils.C
>Locally modified   src/frontend/SageIII/astMerge/MergeUtils.h
>Locally modified   src/frontend/SageIII/astPostProcessing/Makefile.am
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.C
>Locally modified   src/frontend/SageIII/astPostProcessing/astPostProcessing.h
>Locally modified   src/frontend/SageIII/astPostProcessing/checkIsModifiedFlag.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDeclarations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupSymbolTables.C
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupSymbolTables.h
>Locally modified   src/frontend/SageIII/astPostProcessing/fixupTemplateInstantiations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markCompilerGenerated.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markForOutputInCodeGeneration.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markOverloadedTemplateInstantiations.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.h
>Locally modified   src/frontend/SageIII/astPostProcessing/markTemplateSpecializationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/markTransformationsForOutput.C
>Locally modified   src/frontend/SageIII/astPostProcessing/processTemplateHandlingOptions.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetParentPointers.C
>Locally modified   src/frontend/SageIII/astPostProcessing/resetParentPointers.h
>Locally modified   src/frontend/SageIII/astPostProcessing/resetTemplateNames.C
>Locally modified   src/frontend/SageIII/docs/HowToDocumentROSE.docs
>Locally modified   src/frontend/SageIII/docs/SgCaseOptionStmt.docs
>Locally modified   src/frontend/SageIII/docs/SgClassDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgDeclarationStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgDirectory.docs
>Locally modified   src/frontend/SageIII/docs/SgDoWhileStmt.docs
>Locally modified   src/frontend/SageIII/docs/SgExprListExp.docs
>Locally modified   src/frontend/SageIII/docs/SgExpression.docs
>Locally modified   src/frontend/SageIII/docs/SgFile.docs
>Locally modified   src/frontend/SageIII/docs/SgFileInfo.docs
>Locally modified   src/frontend/SageIII/docs/SgForInitStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgForStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgFunctionDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgFunctionParameterList.docs
>Locally modified   src/frontend/SageIII/docs/SgFunctionRefExp.docs
>Locally modified   src/frontend/SageIII/docs/SgFunctionTypeTable.docs
>Locally modified   src/frontend/SageIII/docs/SgIfStmt.docs
>Locally modified   src/frontend/SageIII/docs/SgLabelStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgLocatedNode.docs
>Locally modified   src/frontend/SageIII/docs/SgMemberFunctionDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgNamespaceDeclarationStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgNewExp.docs
>Locally modified   src/frontend/SageIII/docs/SgNode.docs
>Locally modified   src/frontend/SageIII/docs/SgProject.docs
>Locally modified   src/frontend/SageIII/docs/SgReturnStmt.docs
>Locally modified   src/frontend/SageIII/docs/SgScopeStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgSizeOfOp.docs
>Locally modified   src/frontend/SageIII/docs/SgStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgSwitchStatement.docs
>Locally modified   src/frontend/SageIII/docs/SgSymbol.docs
>Locally modified   src/frontend/SageIII/docs/SgTemplateArgument.docs
>Locally modified   src/frontend/SageIII/docs/SgTemplateDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgTemplateInstantiationDecl.docs
>Locally modified   src/frontend/SageIII/docs/SgTemplateInstantiationFunctionDecl.docs
>Locally modified   src/frontend/SageIII/docs/SgTemplateInstantiationMemberFunctionDecl.docs
>Locally modified   src/frontend/SageIII/docs/SgThrowOp.docs
>Locally modified   src/frontend/SageIII/docs/SgType.docs
>Locally modified   src/frontend/SageIII/docs/SgTypedefDeclaration.docs
>Locally modified   src/frontend/SageIII/docs/SgUnaryOp.docs
>Locally modified   src/frontend/SageIII/docs/SgVariableDefinition.docs
>Locally modified   src/frontend/SageIII/docs/SgVariableSymbol.docs
>Locally modified   src/frontend/SageIII/docs/SharedNodes.docs
>Locally modified   src/frontend/SageIII/docs/doc_example1.docs
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.C
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.h
>Locally modified   src/midend/astDiagnostics/AstDiagnostics.docs
>Locally modified   src/midend/astDiagnostics/AstPerformance.C
>Locally modified   src/midend/astDiagnostics/AstStatistics.C
>Locally modified   src/midend/astDiagnostics/AstStatistics.h
>Locally modified   src/midend/astDiagnostics/AstWarnings.C
>Locally modified   src/midend/astDiagnostics/AstWarnings.h
>Locally modified   src/midend/astInlining/inliner.C
>Locally modified   src/midend/astInlining/inliner.h
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/inlinerSupport.h
>Locally modified   src/midend/astInlining/isPotentiallyModified.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.h
>Locally modified   src/midend/astInlining/typeTraits.h
>Locally modified   src/midend/astOutlining/RoseOutliner.C
>Locally modified   src/midend/astOutlining/RoseOutliner.h
>Locally modified   src/midend/astProcessing/AgDefaultError.C
>Locally modified   src/midend/astProcessing/AgProcessing.C
>Locally modified   src/midend/astProcessing/AgProcessing.h
>Locally modified   src/midend/astProcessing/Ast.C
>Locally modified   src/midend/astProcessing/AstAttributeMechanism.h
>Locally modified   src/midend/astProcessing/AstClearVisitFlags.C
>Locally modified   src/midend/astProcessing/AstDOTGeneration.C
>Locally modified   src/midend/astProcessing/AstDOTGeneration.h
>Locally modified   src/midend/astProcessing/AstNodePtrs.C
>Locally modified   src/midend/astProcessing/AstNodeScanner.C
>Locally modified   src/midend/astProcessing/AstNodeVisitMapping.C
>Locally modified   src/midend/astProcessing/AstNodeVisitMapping.h
>Locally modified   src/midend/astProcessing/AstPDFGeneration.C
>Locally modified   src/midend/astProcessing/AstPDFGeneration.h
>Locally modified   src/midend/astProcessing/AstProcessing.C
>Locally modified   src/midend/astProcessing/AstProcessing.docs
>Locally modified   src/midend/astProcessing/AstProcessing.h
>Locally modified   src/midend/astProcessing/AstRestructure.C
>Locally modified   src/midend/astProcessing/AstRestructure.h
>Locally modified   src/midend/astProcessing/AstReverseProcessing.C
>Locally modified   src/midend/astProcessing/AstReverseProcessing.h
>Locally modified   src/midend/astProcessing/AstReverseSimpleProcessing.C
>Locally modified   src/midend/astProcessing/AstSimpleProcessing.C
>Locally modified   src/midend/astProcessing/AstSuccessorsSelectors.C
>Locally modified   src/midend/astProcessing/AstTextAttributesHandling.C
>Locally modified   src/midend/astProcessing/AstTextAttributesHandling.h
>Locally modified   src/midend/astProcessing/AstTraversal.C
>Locally modified   src/midend/astProcessing/AstTraversal.h
>Locally modified   src/midend/astProcessing/abstractcppgrammar.atg
>Locally modified   src/midend/astProcessing/sgnodec.hpp
>Locally modified   src/midend/astProcessing/sgnodep.cpp
>Locally modified   src/midend/astQuery/Makefile.am
>Locally modified   src/midend/astQuery/booleanQuery.C
>Locally modified   src/midend/astQuery/booleanQueryInheritedAttribute.C
>Locally modified   src/midend/astQuery/nameQuery.C
>Locally modified   src/midend/astQuery/nameQuery.h
>Locally modified   src/midend/astQuery/nameQueryInheritedAttribute.C
>Locally modified   src/midend/astQuery/nodeQuery.C
>Locally modified   src/midend/astQuery/nodeQuery.h
>Locally modified   src/midend/astQuery/nodeQueryInheritedAttribute.C
>Locally modified   src/midend/astQuery/numberQuery.C
>Locally modified   src/midend/astQuery/numberQuery.h
>Locally modified   src/midend/astQuery/numberQueryInheritedAttribute.C
>Locally modified   src/midend/astQuery/queryVariant.C
>Locally modified   src/midend/astQuery/roseQueryLib.h
>Locally modified   src/midend/astRewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   src/midend/astRewriteMechanism/ASTRewrite.docs
>Locally modified   src/midend/astRewriteMechanism/highLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/lowLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/midLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/nodeCollection.C
>Locally modified   src/midend/astRewriteMechanism/nodeCollectionTemplates.C
>Locally modified   src/midend/astRewriteMechanism/prefixGeneration.C
>Locally modified   src/midend/astRewriteMechanism/rewrite.h
>Locally modified   src/midend/astRewriteMechanism/rewriteASTFragementString.C
>Locally modified   src/midend/astRewriteMechanism/rewriteASTFragementStringTemplates.C
>Locally modified   src/midend/astRewriteMechanism/rewriteAccumulatedAttribute.C
>Locally modified   src/midend/astRewriteMechanism/rewriteDebuggingSupport.C
>Locally modified   src/midend/astRewriteMechanism/rewriteDebuggingSupportTemplates.C
>Locally modified   src/midend/astRewriteMechanism/rewriteHighLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   src/midend/astRewriteMechanism/rewriteSynthesizedAttribute.C
>Locally modified   src/midend/astRewriteMechanism/rewriteSynthesizedAttributeTemplates.C
>Locally modified   src/midend/astRewriteMechanism/rewriteTreeTraversal.C
>Locally modified   src/midend/astRewriteMechanism/rewriteTypeDeclaration.C
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.C
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.h
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.h
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.C
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.h
>Locally modified   src/midend/astUtil/annotation/AnnotIO.C
>Locally modified   src/midend/astUtil/annotation/AnnotIO.h
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/OperatorDescriptors.C
>Locally modified   src/midend/astUtil/annotation/OperatorDescriptors.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.C
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.h
>Locally modified   src/midend/astUtil/astInterface/CPPAstInterface.C
>Locally modified   src/midend/astUtil/astInterface/CPPAstInterface.h
>Locally modified   src/midend/astUtil/astSupport/AnalysisInterface.h
>Locally modified   src/midend/astUtil/astSupport/ProcessAstTree.C
>Locally modified   src/midend/astUtil/astSupport/ProcessAstTree.h
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.C
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicBound.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicBound.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicExpr.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicExpr.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicFind.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicMultiply.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicOperator.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicPlus.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicSelect.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicUnwrapCond.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.h
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.C
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.h
>Locally modified   src/midend/loopProcessing/computation/DepCompTransform.C
>Locally modified   src/midend/loopProcessing/computation/LoopTree.C
>Locally modified   src/midend/loopProcessing/computation/LoopTree.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeBuild.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeObserver.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeShadow.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeShadow.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraph.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.C
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.h
>Locally modified   src/midend/loopProcessing/depGraph/LoopAnalysis.C
>Locally modified   src/midend/loopProcessing/depGraph/LoopAnalysis.h
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.C
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoSet.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoSet.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoUpdate.h
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.C
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.h
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/ReuseAnalysis.C
>Locally modified   src/midend/loopProcessing/depInfo/ReuseAnalysis.h
>Locally modified   src/midend/loopProcessing/depInfo/StmtDepAnal.C
>Locally modified   src/midend/loopProcessing/depInfo/StmtDepAnal.h
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.h
>Locally modified   src/midend/loopProcessing/driver/CopyArrayAnal.C
>Locally modified   src/midend/loopProcessing/driver/CopyArrayAnal.h
>Locally modified   src/midend/loopProcessing/driver/FusionAnal.C
>Locally modified   src/midend/loopProcessing/driver/FusionAnal.h
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.h
>Locally modified   src/midend/loopProcessing/driver/TransformComputation.C
>Locally modified   src/midend/loopProcessing/driver/TypedFusionImpl.C
>Locally modified   src/midend/loopProcessing/prepostTransformation/BreakupStmt.C
>Locally modified   src/midend/loopProcessing/prepostTransformation/BreakupStmt.h
>Locally modified   src/midend/loopProcessing/prepostTransformation/LoopUnroll.C
>Locally modified   src/midend/loopProcessing/prepostTransformation/LoopUnroll.h
>Locally modified   src/midend/loopProcessing/prepostTransformation/PrivatizeScalar.C
>Locally modified   src/midend/loopProcessing/prepostTransformation/PrivatizeScalar.h
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.C
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceImpl.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.h
>Locally modified   src/midend/loopProcessing/slicing/DependenceHoisting.C
>Locally modified   src/midend/loopProcessing/slicing/DynamicCompSlice.C
>Locally modified   src/midend/programAnalysis/CFG/CFG.h
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.h
>Locally modified   src/midend/programAnalysis/CFG/CFG_OA.C
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/CallGraph.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/CallGraph.h
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.C
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.h
>Locally modified   src/midend/programAnalysis/CallGraphAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/OAWrap/OAWrap.C
>Locally modified   src/midend/programAnalysis/OAWrap/SAGE2OA.C
>Locally modified   src/midend/programAnalysis/OAWrap/SAGE2OA.h
>Locally modified   src/midend/programAnalysis/OpenAnalysis/CFG/CFG.h
>Locally modified   src/midend/programAnalysis/OpenAnalysis/Interface/IRInterface.h
>Locally modified   src/midend/programAnalysis/OpenAnalysis/Utils/BaseGraph.h
>Locally modified   src/midend/programAnalysis/OpenAnalysis/Utils/DGraph.h
>Locally modified   src/midend/programAnalysis/annotationLanguageParser/broadway.h
>Locally modified   src/midend/programAnalysis/annotationLanguageParser/localstl.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.h
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/ControlFlowGraph.C
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/ControlFlowGraph.h
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominanceFrontier.C
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominanceFrontier.h
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominatorTree.C
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominatorTree.h
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/SimpleDirectedGraph.h
>Locally modified   src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/main.C
>Locally modified   src/midend/programAnalysis/sideEffectAnalysis/sideEffect.h
>Locally modified   src/midend/programAnalysis/staticProgramSlicing/DependenceGraph.h
>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.h
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.h
>Locally modified   src/midend/programTransformation/Makefile.am
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.h
>Locally modified   src/midend/programTransformation/finiteDifferencing/patternRewrite.h
>Locally modified   src/midend/programTransformation/functionCallNormalization/FunctionNormalization.C
>Locally modified   src/midend/programTransformation/functionCallNormalization/FunctionNormalization.h
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/controlFlowGraph.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/controlFlowGraph.h
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/expressionTreeEqual.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/expressionTreeEqual.h
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/pre.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/pre.h
>Locally modified   src/roseExtensions/SQLiteConnection/ColData.h
>Locally modified   src/roseExtensions/SQLiteConnection/Result.h
>Locally modified   src/roseExtensions/SQLiteConnection/dbheaders.h
>Locally modified   src/roseExtensions/dataStructureTraversal/ControlStructure.h
>Locally modified   src/roseExtensions/dataStructureTraversal/GenGeneration.h
>Locally modified   src/roseExtensions/dataStructureTraversal/GenRepresentation.h
>Locally modified   src/roseExtensions/dataStructureTraversal/helpFunctions.h
>Locally modified   src/roseExtensions/databaseConnection/DatabaseGraph.h
>Locally modified   src/roseSupport/optionDeclaration.C
>Locally modified   src/roseSupport/optionDeclaration.h
>Locally modified   src/roseSupport/roseTranslators.C
>Locally modified   src/roseSupport/roseTranslators.h
>Locally modified   src/roseSupport/sourceLocationInheritedAttribute.C
>Locally modified   src/roseSupport/sourceLocationInheritedAttribute.h
>Locally modified   src/roseSupport/templateSupport.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/transformationSupport.h
>Locally modified   src/roseSupport/utility_functions.C
>Locally modified   src/roseSupport/utility_functions.h
>Locally modified   src/util/setup.h
>Locally modified   src/util/commandlineProcessing/commandline_processing.C
>Locally modified   src/util/commandlineProcessing/commandline_processing.h
>Locally modified   src/util/commandlineProcessing/sla++.C
>Locally modified   src/util/commandlineProcessing/sla.c
>Locally modified   src/util/graphs/BaseGraphCreate.h
>Locally modified   src/util/graphs/DGBaseGraphImpl.h
>Locally modified   src/util/graphs/GraphDotOutput.h
>Locally modified   src/util/graphs/GraphGroup.h
>Locally modified   src/util/graphs/GraphIO.h
>Locally modified   src/util/graphs/GraphInterface.h
>Locally modified   src/util/graphs/GraphScope.h
>Locally modified   src/util/graphs/GraphTemplate.h
>Locally modified   src/util/graphs/GraphUtils.h
>Locally modified   src/util/graphs/IDGraphCreate.C
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/graphs/SCCAnalysis.C
>Locally modified   src/util/graphs/SCCAnalysis.h
>Locally modified   src/util/graphs/TransAnalysis.C
>Locally modified   src/util/graphs/TransAnalysis.h
>Locally modified   src/util/graphs/TypedFusion.C
>Locally modified   src/util/graphs/TypedFusion.h
>Locally modified   src/util/stringSupport/string_functions.C
>Locally modified   src/util/stringSupport/string_functions.h
>Locally modified   src/util/support/BitVectorRepr.h
>Locally modified   src/util/support/CommandOptions.C
>Locally modified   src/util/support/CommandOptions.h
>Locally modified   src/util/support/CountRefHandle.h
>Locally modified   src/util/support/DAG.C
>Locally modified   src/util/support/DAG.h
>Locally modified   src/util/support/DoublyLinkedList.h
>Locally modified   src/util/support/FunctionObject.h
>Locally modified   src/util/support/IteratorCompound.h
>Locally modified   src/util/support/IteratorTmpl.h
>Locally modified   src/util/support/LatticeElemList.h
>Locally modified   src/util/support/Matrix.h
>Locally modified   src/util/support/PtrMap.h
>Locally modified   src/util/support/PtrSet.h
>Locally modified   src/util/support/SinglyLinkedList.h
>Locally modified   src/util/support/TreeImpl.h
>Locally modified   src/util/support/general.h
>Locally modified   tests/Makefile.am
>Locally modified   tests/testTranslator.C
>Locally modified   tests/tests.tex
>Locally modified   tests/CompileTests/Makefile.am
>Locally modified   tests/CompileTests/A++Code/Makefile.am
>Locally modified   tests/CompileTests/C++Code/Makefile.am
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/inlineEverything.C
>Locally modified   tests/roseTests/astMergeTests/testMerge.C
>Locally modified   tests/roseTests/astOutliningTests/driver_rose_outliner.C
>Locally modified   tests/roseTests/astPerformanceTests/Makefile.am
>Locally modified   tests/roseTests/astPerformanceTests/testPerformance.C
>Locally modified   tests/roseTests/astQueryTests/input1.C
>Locally modified   tests/roseTests/astQueryTests/testQuery.C
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/TauMidTraversal.h
>Locally modified   tests/roseTests/astRewriteTests/inputProgram2.C
>Locally modified   tests/roseTests/astRewriteTests/tauifyPreprocessor.C
>Locally modified   tests/roseTests/astRewriteTests/testCommentInsertion.C
>Locally modified   tests/roseTests/astRewriteTests/testDeclarationPrefixGeneration.C
>Locally modified   tests/roseTests/astRewriteTests/testExample1.C
>Locally modified   tests/roseTests/astRewriteTests/testMidLevelInterface.C
>Locally modified   tests/roseTests/astRewriteTests/testNewRewrite.C
>Locally modified   tests/roseTests/astRewriteTests/testRemoveStatements.C
>Locally modified   tests/roseTests/astRewriteTests/testReplacementStatements.C
>Locally modified   tests/roseTests/astRewriteTests/testRewritePermutations.C
>Locally modified   tests/roseTests/astRewriteTests/testRewriteReplacementPermutations.C
>Locally modified   tests/roseTests/astRewriteTests/testTranslator2004_01.C
>Locally modified   tests/roseTests/loopProcessingTests/LoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/TestDriver
>Locally modified   tests/roseTests/loopProcessingTests/rmatmult3.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_cp0.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_split.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_tridvpk.C.save
>Locally modified   tests/roseTests/programAnalysisTests/CFGTest.C
>Locally modified   tests/roseTests/programAnalysisTests/DataFlowTest.C
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/StmtRefTest.C
>Locally modified   tests/roseTests/programAnalysisTests/TestDriver
>Locally modified   tests/roseTests/programAnalysisTests/TestDriver.C
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testCallGraphAnalysis/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test1.C
>Locally modified   tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test3.C
>Locally modified   tests/roseTests/programAnalysisTests/testCallGraphAnalysis/testCallGraph.C
>Locally modified   tests/roseTests/programTransformationTests/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/TestDriver
>Locally modified   tests/roseTests/programTransformationTests/pass1.C
>Locally modified   tests/roseTests/programTransformationTests/pass3.C
>Locally modified   tests/roseTests/programTransformationTests/preTest.C
>Locally modified   tests/roseTests/programTransformationTests/rose_finitediff_test3.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_rewrite_test1.C.save
>Locally modified   tests/roseTests/programTransformationTests/testFunctionNormalization.C
>Locally modified   tests/roseTests/utilTests/Makefile.am
>Locally modified   tests/roseTests/utilTests/testStrings.C
>Locally modified   tools/cpp2cpp
>Locally modified   tools/cpp2ps
>Locally modified   tutorial/ASTGraphGenerator.C
>Locally modified   tutorial/CharmSupport.C
>Locally modified   tutorial/Makefile.am
>Locally modified   tutorial/accumulatorAttributeTraversal.C
>Locally modified   tutorial/addFunctionDeclaration.C
>Locally modified   tutorial/addVariableDeclaration.C
>Locally modified   tutorial/buildCFG.C
>Locally modified   tutorial/callGraphAnalysis.C
>Locally modified   tutorial/codeCoverage.C
>Locally modified   tutorial/commandlineProcessing.C
>Locally modified   tutorial/dataBaseUsage.C
>Locally modified   tutorial/debuggingIRnodeToString.C
>Locally modified   tutorial/debuggingSourceCodePositionInformation.C
>Locally modified   tutorial/exampleMakefile.in
>Locally modified   tutorial/identityTranslator.C
>Locally modified   tutorial/inheritedAndSynthesizedAttributeTraversal.C
>Locally modified   tutorial/inheritedAttributeTraversal.C
>Locally modified   tutorial/inputCode_CallGraphAnalysis.C
>Locally modified   tutorial/inputCode_ExampleCodeCoverage.C
>Locally modified   tutorial/inputCode_InstrumentationTranslator.C
>Locally modified   tutorial/inputCode_dataBaseExample1.C
>Locally modified   tutorial/instrumentationExample.C
>Locally modified   tutorial/loopOptimization.C
>Locally modified   tutorial/loopRecognition.C
>Locally modified   tutorial/nestedTraversal.C
>Locally modified   tutorial/persistantAttributes.C
>Locally modified   tutorial/queryLibraryExample.C
>Locally modified   tutorial/resolveOverloadedFunction.C
>Locally modified   tutorial/synthesizedAttributeTraversal.C
>Locally modified   tutorial/templateParameter.C
>Locally modified   tutorial/typeInfoFromFunctionParameters.C
>Locally modified   tutorial/visitorTraversal.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      BSD.pdf
+Scheduled for add      COPYWRITE
+Scheduled for add      EMAIL_INTRODUCTION
+Scheduled for add      RoseErrata.txt
+Scheduled for add      rose_config.h.in
+Scheduled for add      ROSE_ResearchPapers/Vienna2006-AutomatedTuning.pdf
+Scheduled for add      config/support-maple.m4
+Scheduled for add      config/wave.m4
+Scheduled for add      developersScratchSpace/Dan/64BitExample.C
+Scheduled for add      developersScratchSpace/Dan/buildCFG.C
+Scheduled for add      developersScratchSpace/Dan/changeFunction.C
+Scheduled for add      developersScratchSpace/Dan/classMemorySizes.C
+Scheduled for add      developersScratchSpace/Dan/codeCoverage.C
+Scheduled for add      developersScratchSpace/Dan/conftest.cc
+Scheduled for add      developersScratchSpace/Dan/copyExample.C
+Scheduled for add      developersScratchSpace/Dan/copyExampleInput.C
+Scheduled for add      developersScratchSpace/Dan/documentationGeneration.C
+Scheduled for add      developersScratchSpace/Dan/documentationGeneration.h
+Scheduled for add      developersScratchSpace/Dan/graphWholeAST.C
+Scheduled for add      developersScratchSpace/Dan/in.data
+Scheduled for add      developersScratchSpace/Dan/inputCode_ChangeFunctionExample.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_ExampleCodeCoverage.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_interveneAtVariables.C
+Scheduled for add      developersScratchSpace/Dan/inputCode_merge.C
+Scheduled for add      developersScratchSpace/Dan/inputForLoopLocator.C
+Scheduled for add      developersScratchSpace/Dan/input_cfg.C
+Scheduled for add      developersScratchSpace/Dan/input_documentationGeneration.C
+Scheduled for add      developersScratchSpace/Dan/input_documentationGeneration.docs
+Scheduled for add      developersScratchSpace/Dan/input_graphWholeAST.C
+Scheduled for add      developersScratchSpace/Dan/interveneAtVariables.C
+Scheduled for add      developersScratchSpace/Dan/loopLocator.C
+Scheduled for add      developersScratchSpace/Dan/merge.C
+Scheduled for add      developersScratchSpace/Dan/pythonModification.C
+Scheduled for add      developersScratchSpace/Dan/roseCorrections.C
+Scheduled for add      developersScratchSpace/Dan/roseTranslator.C
+Scheduled for add      developersScratchSpace/Dan/sqliteTest_01.C
+Scheduled for add      developersScratchSpace/Dan/tab2space.c
+Scheduled for add      developersScratchSpace/Dan/test2005_161.C
+Scheduled for add      developersScratchSpace/Dan/test2005_162.C
+Scheduled for add      developersScratchSpace/Dan/test2005_163.C
+Scheduled for add      developersScratchSpace/Dan/test2005_164.C
+Scheduled for add      developersScratchSpace/Dan/test2005_165.C
+Scheduled for add      developersScratchSpace/Dan/test2005_166.C
+Scheduled for add      developersScratchSpace/Dan/test2005_167.C
+Scheduled for add      developersScratchSpace/Dan/test2005_168.c
+Scheduled for add      developersScratchSpace/Dan/test2005_169.C
+Scheduled for add      developersScratchSpace/Dan/test2005_170.C
+Scheduled for add      developersScratchSpace/Dan/test2005_171.C
+Scheduled for add      developersScratchSpace/Dan/test2005_172.c
+Scheduled for add      developersScratchSpace/Dan/test2005_173.C
+Scheduled for add      developersScratchSpace/Dan/test2005_174.C
+Scheduled for add      developersScratchSpace/Dan/test2005_175.C
+Scheduled for add      developersScratchSpace/Dan/test2005_176.C
+Scheduled for add      developersScratchSpace/Dan/test2005_177.C
+Scheduled for add      developersScratchSpace/Dan/test2005_178.C
+Scheduled for add      developersScratchSpace/Dan/test2005_179.C
+Scheduled for add      developersScratchSpace/Dan/test2005_180.C
+Scheduled for add      developersScratchSpace/Dan/test2005_181.C
+Scheduled for add      developersScratchSpace/Dan/test2005_182.C
+Scheduled for add      developersScratchSpace/Dan/test2005_183.C
+Scheduled for add      developersScratchSpace/Dan/test2005_184.C
+Scheduled for add      developersScratchSpace/Dan/test2005_185.C
+Scheduled for add      developersScratchSpace/Dan/test2005_186.c
+Scheduled for add      developersScratchSpace/Dan/test2005_187.C
+Scheduled for add      developersScratchSpace/Dan/test2005_188.C
+Scheduled for add      developersScratchSpace/Dan/test2005_189.c
+Scheduled for add      developersScratchSpace/Dan/test2005_190.C
+Scheduled for add      developersScratchSpace/Dan/test2005_191.C
+Scheduled for add      developersScratchSpace/Dan/test2005_192.C
+Scheduled for add      developersScratchSpace/Dan/test2005_193.C
+Scheduled for add      developersScratchSpace/Dan/test2005_194.C
+Scheduled for add      developersScratchSpace/Dan/test2005_195.C
+Scheduled for add      developersScratchSpace/Dan/test2005_196.C
+Scheduled for add      developersScratchSpace/Dan/test2005_197.C
+Scheduled for add      developersScratchSpace/Dan/test2005_198.C
+Scheduled for add      developersScratchSpace/Dan/test2005_199.C
+Scheduled for add      developersScratchSpace/Dan/test2005_200.C
+Scheduled for add      developersScratchSpace/Dan/test2005_201.C
+Scheduled for add      developersScratchSpace/Dan/test2005_202.C
+Scheduled for add      developersScratchSpace/Dan/test2005_203.C
+Scheduled for add      developersScratchSpace/Dan/test2005_204.C
+Scheduled for add      developersScratchSpace/Dan/test2005_205.C
+Scheduled for add      developersScratchSpace/Dan/test2005_206.C
+Scheduled for add      developersScratchSpace/Dan/test2005_207.C
+Scheduled for add      developersScratchSpace/Dan/test2005_208.C
+Scheduled for add      developersScratchSpace/Dan/test2005_209.C
+Scheduled for add      developersScratchSpace/Dan/test2006_01.C
+Scheduled for add      developersScratchSpace/Dan/test2006_02.C
+Scheduled for add      developersScratchSpace/Dan/test2006_03.C
+Scheduled for add      developersScratchSpace/Dan/test2006_04.C
+Scheduled for add      developersScratchSpace/Dan/test2006_05.C
+Scheduled for add      developersScratchSpace/Dan/test2006_06.C
+Scheduled for add      developersScratchSpace/Dan/test2006_07.C
+Scheduled for add      developersScratchSpace/Dan/test2006_08.C
+Scheduled for add      developersScratchSpace/Dan/test2006_09.C
+Scheduled for add      developersScratchSpace/Dan/test2006_10.C
+Scheduled for add      developersScratchSpace/Dan/test2006_11.C
+Scheduled for add      developersScratchSpace/Dan/test2006_12.C
+Scheduled for add      developersScratchSpace/Dan/test2006_13.C
+Scheduled for add      developersScratchSpace/Dan/test2006_14.C
+Scheduled for add      developersScratchSpace/Dan/test2006_15.C
+Scheduled for add      developersScratchSpace/Dan/test2006_16.C
+Scheduled for add      developersScratchSpace/Dan/test2006_17.C
+Scheduled for add      developersScratchSpace/Dan/test2006_18.C
+Scheduled for add      developersScratchSpace/Dan/test2006_19.C
+Scheduled for add      developersScratchSpace/Dan/test2006_20.C
+Scheduled for add      developersScratchSpace/Dan/test2006_21.C
+Scheduled for add      developersScratchSpace/Dan/test2006_22.C
+Scheduled for add      developersScratchSpace/Dan/test2006_23.C
+Scheduled for add      developersScratchSpace/Dan/test2006_24.C
+Scheduled for add      developersScratchSpace/Dan/test2006_25.C
+Scheduled for add      developersScratchSpace/Dan/test2006_26.C
+Scheduled for add      developersScratchSpace/Dan/test2006_27.C
+Scheduled for add      developersScratchSpace/Dan/test2006_28.C
+Scheduled for add      developersScratchSpace/Dan/test2006_29.C
+Scheduled for add      developersScratchSpace/Dan/test2006_30.C
+Scheduled for add      developersScratchSpace/Dan/test2006_31.C
+Scheduled for add      developersScratchSpace/Dan/test2006_32.C
+Scheduled for add      developersScratchSpace/Dan/test2006_33.C
+Scheduled for add      developersScratchSpace/Dan/test2006_33.h
+Scheduled for add      developersScratchSpace/Dan/test2006_34.C
+Scheduled for add      developersScratchSpace/Dan/test2006_35.C
+Scheduled for add      developersScratchSpace/Dan/test2006_37.C
+Scheduled for add      developersScratchSpace/Dan/test2006_38.C
+Scheduled for add      developersScratchSpace/Dan/test2006_39.C
+Scheduled for add      developersScratchSpace/Dan/test2006_40.C
+Scheduled for add      developersScratchSpace/Dan/test2006_41.C
+Scheduled for add      developersScratchSpace/Dan/test2006_42.C
+Scheduled for add      developersScratchSpace/Dan/test2006_42.h
+Scheduled for add      developersScratchSpace/Dan/test2006_43.C
+Scheduled for add      developersScratchSpace/Dan/test2006_44.C
+Scheduled for add      developersScratchSpace/Dan/test2006_45.C
+Scheduled for add      developersScratchSpace/Dan/test2006_46.C
+Scheduled for add      developersScratchSpace/Dan/test2006_47.C
+Scheduled for add      developersScratchSpace/Dan/test2006_48.c
+Scheduled for add      developersScratchSpace/Dan/test2006_49.C
+Scheduled for add      developersScratchSpace/Dan/test2006_50.C
+Scheduled for add      developersScratchSpace/Dan/test2006_51.C
+Scheduled for add      developersScratchSpace/Dan/test2006_52.C
+Scheduled for add      developersScratchSpace/Dan/test2006_53.C
+Scheduled for add      developersScratchSpace/Dan/test2006_54.C
+Scheduled for add      developersScratchSpace/Dan/test2006_55.C
+Scheduled for add      developersScratchSpace/Dan/test2006_56.C
+Scheduled for add      developersScratchSpace/Dan/testEDGPreincludeMechanism_file_A.C
+Scheduled for add      developersScratchSpace/Dan/testEDGPreincludeMechanism_file_B.C
+Scheduled for add      developersScratchSpace/Dan/testForTestStatement.C
+Scheduled for add      developersScratchSpace/Dan/testGlobalNameSpace.C
+Scheduled for add      developersScratchSpace/Dan/testLimits.C
+Scheduled for add      developersScratchSpace/Dan/testRTTI.C
+Scheduled for add      developersScratchSpace/Dan/test_CplusplusMacro_C.C
+Scheduled for add      developersScratchSpace/Dan/test_CplusplusMacro_Cpp.C
+Scheduled for add      developersScratchSpace/Dan/testg++.C
+Scheduled for add      developersScratchSpace/Dan/typeTest1.C
+Scheduled for add      developersScratchSpace/Dan/visitorPattern.C
+Scheduled for add      docs/Rose/AstProcessing.tex
+Scheduled for add      docs/Rose/AstRewrite.tex
+Scheduled for add      docs/Rose/AvailableDocumentation.docs.in
+Scheduled for add      docs/Rose/ProgramAnalysis.tex
+Scheduled for add      docs/Rose/QueryLibrary.tex
+Scheduled for add      docs/Rose/SageIII.tex
+Scheduled for add      docs/Rose/WEB_DOCS_README
+Scheduled for add      docs/Rose/compass_rose.gif
+Scheduled for add      docs/Rose/compass_rose.ps
+Scheduled for add      docs/Rose/db-docs.tex
+Scheduled for add      docs/Rose/developersAppendix.tex
+Scheduled for add      docs/Rose/gettingStarted.tex.in
+Scheduled for add      docs/Rose/overviewOfRose.tex
+Scheduled for add      docs/Rose/rose.html.in
+Scheduled for add      docs/Rose/writingYourFirstTranslator.tex
+Scheduled for add      docs/Rose/Tutorial/AST_PDF_Generator.tex
+Scheduled for add      docs/Rose/Tutorial/addingComments.tex
+Scheduled for add      docs/Rose/Tutorial/astFileIO.tex
+Scheduled for add      docs/Rose/Tutorial/buildCG.tex
+Scheduled for add      docs/Rose/Tutorial/codeGenerationFormatControl.tex
+Scheduled for add      docs/Rose/Tutorial/gettingStarted.tex.in
+Scheduled for add      docs/Rose/Tutorial/partialRedundancyElimination.tex
+Scheduled for add      docs/Rose/Tutorial/scopeInformation.tex
+Scheduled for add      docs/Rose/Tutorial/tauInstrumentation.tex
+Scheduled for add      docs/Rose/Tutorial/uniqueNames.tex
+Scheduled for add      docs/Rose/Tutorial/wholeGraphAST.tex
+Scheduled for add      docs/testDoxygen/AST_FILE_IO.docs
+Scheduled for add      docs/testDoxygen/ExtraRelatedPages.docs
+Scheduled for add      docs/testDoxygen/FortranSupport.docs
+Scheduled for add      docs/testDoxygen/ProjectToDoList.docs
+Scheduled for add      docs/testDoxygen/Publications.docs
+Scheduled for add      docs/testDoxygen/ROSE_DownloadPage.docs
+Scheduled for add      docs/testDoxygen/RelatedWork.docs
+Scheduled for add      docs/testDoxygen/SgBoolValExp.docs
+Scheduled for add      docs/testDoxygen/SgDeclarationModifier.docs
+Scheduled for add      docs/testDoxygen/SgDoubleVal.docs
+Scheduled for add      docs/testDoxygen/SgFloatVal.docs
+Scheduled for add      docs/testDoxygen/SgLongDoubleVal.docs
+Scheduled for add      docs/testDoxygen/SgName.docs
+Scheduled for add      docs/testDoxygen/SgNamespaceSymbol.docs
+Scheduled for add      docs/testDoxygen/SgOptions.docs
+Scheduled for add      docs/testDoxygen/SgQualifiedName.docs
+Scheduled for add      docs/testDoxygen/SgStorageModifier.docs
+Scheduled for add      docs/testDoxygen/SgSymbolTable.docs
+Scheduled for add      docs/testDoxygen/SgTypeDefault.docs
+Scheduled for add      docs/testDoxygen/SgTypeString.docs
+Scheduled for add      docs/testDoxygen/SgTypedefSeq.docs
+Scheduled for add      docs/testDoxygen/SgValueExp.docs
+Scheduled for add      docs/testDoxygen/doxygenBugs.docs
+Scheduled for add      scripts/configure_with_boost_wave
+Scheduled for add      scripts/configure_with_maple
+Scheduled for add      scripts/copyWebPages
+Scheduled for add      scripts/recursiveRoseCorrections
+Scheduled for add      scripts/rsync_commands.txt
+Scheduled for add      src/3rdPartyLibraries/3rdPartyLibraries.docs
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/PDFlib.docs
+Scheduled for add      src/ROSETTA/Grammar/grammarAST_FileIoHeader.code
+Scheduled for add      src/ROSETTA/Grammar/grammarAST_FileIoSource.code
+Scheduled for add      src/ROSETTA/Grammar/grammarCheckingIfDataMembersAreInMemoryPool.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarConstructorOfStorageClass.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarNewDeleteOperatorMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarReturnDataMemberPointers.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarSourceOfIRNodesAstFileIOSupport.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarStaticDataManagingClassHeader.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarStaticDataManagingClassSource.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarStaticDataManagingClassStorageClassHeader.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarStorageClassDeclatationMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarStorageClassDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarTestPointerForContainmentInMemoryPool.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarTraverseMemoryPool.macro
+Scheduled for add      src/ROSETTA/src/buildAstFileIO.C
+Scheduled for add      src/ROSETTA/src/buildStorageClasses.C
+Scheduled for add      src/ROSETTA/src/poolBasedTraversal.C
+Scheduled for add      src/ROSETTA/src/visitorSupport.C
+Scheduled for add      src/backend/backend.docs
+Scheduled for add      src/backend/fortranCodeGeneration/Makefile.am
+Scheduled for add      src/backend/fortranCodeGeneration/copy_unparser.C
+Scheduled for add      src/backend/fortranCodeGeneration/copy_unparser.h
+Scheduled for add      src/backend/fortranCodeGeneration/documentation.docs
+Scheduled for add      src/backend/fortranCodeGeneration/modified_sage.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_expr.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_expr_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_format.h
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_format_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_format_fort.h
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_stmt.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_stmt_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_sym.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_sym_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_type.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparse_type_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparser.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparser.h
+Scheduled for add      src/backend/fortranCodeGeneration/unparser_fort.C
+Scheduled for add      src/backend/fortranCodeGeneration/unparser_fort.h
+Scheduled for add      src/backend/unparser/unparseFormatHelp.C
+Scheduled for add      src/backend/unparser/unparseFormatHelp.h
+Scheduled for add      src/frontend/frontend.docs
+Scheduled for add      src/frontend/Open64/documentation.docs
+Scheduled for add      src/frontend/SageIII/advanced_preprocessing_hooks.h
+Scheduled for add      src/frontend/SageIII/astGraph.C
+Scheduled for add      src/frontend/SageIII/astGraph.h
+Scheduled for add      src/frontend/SageIII/astGraphTemplate.C
+Scheduled for add      src/frontend/SageIII/attach_all_info.C
+Scheduled for add      src/frontend/SageIII/attach_all_info.h
+Scheduled for add      src/frontend/SageIII/attributeListMap.C
+Scheduled for add      src/frontend/SageIII/attributeListMap.h
+Scheduled for add      src/frontend/SageIII/manglingSupport.C
+Scheduled for add      src/frontend/SageIII/manglingSupport.h
+Scheduled for add      src/frontend/SageIII/astFileIO/Makefile.am
+Scheduled for add      src/frontend/SageIII/astFileIO/StorageClassMemoryManagement.C
+Scheduled for add      src/frontend/SageIII/astFileIO/StorageClassMemoryManagement.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNullPointers.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupNullPointers.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markBackendCompilerSpecificFunctionsAsCompilerGenerated.h
+Scheduled for add      src/frontend/SageIII/docs/AST_FILE_IO.docs
+Scheduled for add      src/frontend/SageIII/docs/ExtraRelatedPages.docs
+Scheduled for add      src/frontend/SageIII/docs/FortranSupport.docs
+Scheduled for add      src/frontend/SageIII/docs/ProjectToDoList.docs
+Scheduled for add      src/frontend/SageIII/docs/Publications.docs
+Scheduled for add      src/frontend/SageIII/docs/README
+Scheduled for add      src/frontend/SageIII/docs/ROSE_DownloadPage.docs
+Scheduled for add      src/frontend/SageIII/docs/RelatedWork.docs
+Scheduled for add      src/frontend/SageIII/docs/SgBoolValExp.docs
+Scheduled for add      src/frontend/SageIII/docs/SgDeclarationModifier.docs
+Scheduled for add      src/frontend/SageIII/docs/SgDoubleVal.docs
+Scheduled for add      src/frontend/SageIII/docs/SgFloatVal.docs
+Scheduled for add      src/frontend/SageIII/docs/SgLongDoubleVal.docs
+Scheduled for add      src/frontend/SageIII/docs/SgName.docs
+Scheduled for add      src/frontend/SageIII/docs/SgNamespaceSymbol.docs
+Scheduled for add      src/frontend/SageIII/docs/SgOptions.docs
+Scheduled for add      src/frontend/SageIII/docs/SgQualifiedName.docs
+Scheduled for add      src/frontend/SageIII/docs/SgStorageModifier.docs
+Scheduled for add      src/frontend/SageIII/docs/SgSymbolTable.docs
+Scheduled for add      src/frontend/SageIII/docs/SgTypeDefault.docs
+Scheduled for add      src/frontend/SageIII/docs/SgTypeString.docs
+Scheduled for add      src/frontend/SageIII/docs/SgTypedefSeq.docs
+Scheduled for add      src/frontend/SageIII/docs/SgValueExp.docs
+Scheduled for add      src/frontend/SageIII/docs/doxygenBugs.docs
+Scheduled for add      src/midend/midend.docs
+Scheduled for add      src/midend/astInlining/documentation.docs
+Scheduled for add      src/midend/astOutlining/documentation.docs
+Scheduled for add      src/midend/astQuery/astQuery.C
+Scheduled for add      src/midend/astQuery/astQuery.h
+Scheduled for add      src/midend/astQuery/astQueryInheritedAttribute.C
+Scheduled for add      src/midend/astQuery/astQueryInheritedAttribute.h
+Scheduled for add      src/midend/loopProcessing/documentation.docs
+Scheduled for add      src/midend/programAnalysis/documentation.docs
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/CallGraphTemplate.C
+Scheduled for add      src/midend/programTransformation/documentation.docs
+Scheduled for add      src/midend/programTransformation/constantFolding/Makefile.am
+Scheduled for add      src/midend/programTransformation/constantFolding/constantFolding.C
+Scheduled for add      src/midend/programTransformation/constantFolding/constantFolding.h
+Scheduled for add      tests/CompileTests/ElsaTestCases/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0002.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0003.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0004.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0005.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0006.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0007.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0008.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0009.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0010.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0011.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0012.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0013.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0014.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0015.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0016.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0017.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0018.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0019.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0020.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0021.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0022.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0023.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0024.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0025.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0026.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0027.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0028.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0029.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0030.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0031.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0032.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0034.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0035.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0036.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0037.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0038.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0039.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0040.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0046.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0046elab.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0047.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0048.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0048elab.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0049.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0050.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0051.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0051elab.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0052.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0054.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0055.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0056.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0057.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0058.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0059.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0060.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0061.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0064.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0065.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0066.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0067.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0068.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0069.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0070.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0071.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0072.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0073.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0074.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0075.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0079.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0080.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0084.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0087.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0088.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0089.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0090.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0091.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0097.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0098.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0099.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0100.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0101.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0102.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0104.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0105.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0106.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0107.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0108.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0109.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0111.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0112.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0113.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0114.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0116.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0117.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0119.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0121.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/d0124.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/foo.h
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0002.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0003.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0004.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0005.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0005a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0006.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0007.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0009.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0010.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0011.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0012.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0013.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0014.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0015.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0016.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0017.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0018.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0019.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0020.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0021.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0022.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0023.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0024.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0025.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0026.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0027.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0029.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0030.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0031.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0032.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0033.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0035.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0036.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0037.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0038.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0039.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0040.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0041.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0042.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0043.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0045.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0046.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0046a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0046b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0047.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0048.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0049.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0050.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0051.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0052.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0054.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0055.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0056.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0057.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/k0058.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/sg0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0002.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0003.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0004.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0005.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0008.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0009.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0010.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0011.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0013.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0014a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0015.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0016.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0017.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0018.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0019.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0020.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0021.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0022.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0023.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0024.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0025.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0026.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0027.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0028.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0029.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0030a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0030b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0032.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0033.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0034.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0035.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0037.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0038.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0039.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0041.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0042.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0043.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0044.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0045.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0046.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0047.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0048.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0049.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0050.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0051.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0052.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0053.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0055.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0056.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0057.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0058.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0059.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0060.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0061.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0063.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0064.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0065.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0066.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0067.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0070.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0071.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0073.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0075.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0076.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0077.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0080.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0081.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0083.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0084.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0085.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0086.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0087.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0088.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0089.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0090.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0092.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0094.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0095.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0096.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0097.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0098.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0100.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0101.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0102.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0103.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0104.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0105.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0106.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0107.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0108.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0108b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0110.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0111.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0112.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0113.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0114.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0115.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0119.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0121.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0122.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0124.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0125.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0127.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0128.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0130.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0131.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0132.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0133.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0135.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0149.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0150.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0151.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0152.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0153.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0154.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0155.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0156.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0158.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0160.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0161.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0164.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0165.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0166.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0167.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0168.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0169.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0170.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0171.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0172.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0173.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0174.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0175.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0176.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0179.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0180.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0181.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0182.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0183.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0184.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0185.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0186.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0187.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0188.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0189.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0190.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0191.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0192.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0193.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0194.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0195.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0197.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0198.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0199.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0200.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0201.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0202.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0203.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0204.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0205.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0206.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0207.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0208.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0210.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0211.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0212.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0213.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0214.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0217.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0218.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0219.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0220.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0222.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0223.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0225.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0226.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0227.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0228b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0229.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0231.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0232.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0233.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0234.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0235.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0236.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0237.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0238.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0239.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0240.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0241.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0243.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0244.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0245.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0246.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0247.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0248.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0249.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0250.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0252.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0253.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0254.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0255.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0256.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0257.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0259.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0260.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0262.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0266.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0268.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0268a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0269.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0270.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0273.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0274.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0275.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0276.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0277.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0278.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0280.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0281.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0283.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0284.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0285.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0286.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0289.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0290.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0290a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0291.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0292.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0293.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0294.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0295.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0296.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0298.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0300.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0301.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0302.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0303.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0304.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0305.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0306.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0307.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0308.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0312.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0313.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0314.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0315.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0316.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0317.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0318.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0319.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0320.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0321.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0322.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0323.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0324.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0325.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0326.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0327.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0328.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0329.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0330.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0331.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0332.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0333.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0334.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0335.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0336.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0337.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0338.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0340.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0341.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0343.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0344.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0346.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0348.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0349.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0350.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0351.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0352.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0353.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0355.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0356.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0357.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0358.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0359.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0360.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0361.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0362.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0363.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0364.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0365.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0366.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0367.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0368.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0369.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0370.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0371.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0372.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0373.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0374.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0375.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0376.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0377.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0378.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0379.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0381.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0382.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0384.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0386.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0387.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0388.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0389.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0390.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0391.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0392.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0393.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0394.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0395.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0396.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0397.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0398.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0399.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0400.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0404.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0405.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0406.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0407.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0409.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0410.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0411.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0412.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0413.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0414.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0415.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0417.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0418.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0419.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0420.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0421.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0422.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0422a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0424.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0425.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0426.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0427.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0428.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0429.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0430.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0432.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0433.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0434.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0435.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0436.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0437.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0438.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0438a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0439.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0440.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0441.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0441a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0442.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0443.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0444.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0445.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0446.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0447.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0448.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0450.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0451.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0453.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0454.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0455.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0456.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0457.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0458.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0459.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0460.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0461.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0462.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0463.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0464.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0466.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0467.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0468.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0469.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0470.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0471.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0472.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0473.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0474.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0475.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0476.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0477.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0478.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0479.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0480.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0481.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0482.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0483.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0484.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0485.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0486.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0487.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0487b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0488.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0489.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0490.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0491.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0492.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0493.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0494.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0495.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0496.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0497.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0498.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0499.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0500.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0501.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0502.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0503.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0504.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0505.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0506.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0507.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0508.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0510.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0512.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0513.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0514.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0515.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0516.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0517.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0518.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0519.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0521.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0522.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0523.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0524.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0525.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0526.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0527.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0528.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0530.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0531.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0532.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0534.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0535.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0536.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0537.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0538.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_1.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_10.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_11.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_2.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_3.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_4.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_5.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_6.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_7.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_8.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0539_9.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0540.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0541.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0542.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0543.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0544.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0545.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0546.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0547.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0548.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0549.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0550.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0551.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0552.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0553.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0554.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0555.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0556.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0557.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0558.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0559.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0560.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0562.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0563.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0564.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0565.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0566.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0567.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0568.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0569.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0570.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0571.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0572.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0573.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0574.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0575.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0577.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/t0578.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/d0124b.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0010.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0011.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0012.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0013.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0017.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0018.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0019.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0020.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0021.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0022.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0023.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0024.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0025.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0026.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0027.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0028.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0029.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0030.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0031.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/dC0032.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0003.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0003a.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0004.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0005.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0006.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0006a.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0007.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0008.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0009.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0010.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/k0011.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0003.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0005.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0006.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0007.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0008.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0009.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0010.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0011.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0012.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0013.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0014.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0015.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0016.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0017.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0018.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0019.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0020.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0021.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0022.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0023.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0024.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0025.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/ctests/t0026.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/asm01.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/attr01.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/attr02.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/c0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/c0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0078.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0081.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0083.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0085.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0086.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0089.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0092.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0093.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0094.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/d0095.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0003.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0004.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0005.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0006.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0008.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0009.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0015.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0016.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/dC0017.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0002.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0003.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0004.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0005.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0006.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0007.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0008.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0010.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0011.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0012.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0013.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0014.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0017.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0018.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0022.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0028.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0029.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0030.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0032.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/g0033.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/k0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/k0003.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/k0004.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/k0005.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0124.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0126.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0127.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0129.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0131.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/gnu/t0132.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/kandr/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/kandr/t0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/kandr/t0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/kandr/t0003.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/kandr/t0004.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0041.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0050elab.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0053.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0062.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0063.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0103.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0110.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0115.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0118.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0120.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/d0123.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/k0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/k0028.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/k0034.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/k0044.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/k0053.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0006.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0007.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0012.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0014.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0030.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0031.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0036.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0040.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0054.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0062.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0068.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0069.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0072.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0074.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0078.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0079.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0082.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0091.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0093.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0099.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0109.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0116.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0117.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0118.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0120.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0123.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0126.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0127.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0129.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0134.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0136.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0137.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0138.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0139.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0140.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0141.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0142.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0143.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0144.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0145.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0146.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0147.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0148.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0157.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0159.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0162.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0163.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0177.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0178.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0196.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0209.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0215.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0216.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0221.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0224.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0228.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0230.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0242.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0251.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0258.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0261.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0263.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0264.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0265.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0267.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0271.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0272.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0279.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0282.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0287.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0288.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0297.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0299.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0309.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0310.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0311.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0339.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0342.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0345.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0347.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0354.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0380.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0383.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0385.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0401.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0402.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0403.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0408.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0416.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0423.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0431.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0449.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0452.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0465.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0509.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0511.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0520.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0529.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0533.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0561.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/t0576.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/c/t0004.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/c99/d0077.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/c99/n0001.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/c99/n0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/c99/t0133.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/d0076.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/d0082.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/d0096.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/d0099.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/d0122.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/dC0002.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/dC0007.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/dC0014.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0009.c
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0015.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0016.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0019.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0020.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0021.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0023.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0024.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0025.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0026.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0027.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/g0031.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/k0002.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/t0125.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/t0128.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/gnu/t0130.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/msvc/m0001.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.3.3.1.4.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.3.3.2a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.3.3.2b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.3.3.2d.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.3.3b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/13.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/3.4.5.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.1.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.3e.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.3g.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.3h.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.3i.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.3j.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.4a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/7.3.4c.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/notCompilable/std/Makefile.am
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/12.3.2c.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/12.6.2.2a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/12.6.2.2b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1c.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1d.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1e.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1f.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.1g.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.2a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/13.3.1.1.2.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/3.4.3a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.1.3b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.1.2b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.2.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3c.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3d.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3f.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.3k.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.4b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.4d.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/7.3.4e.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/8.2.1.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/8.2.7a.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/8.2.7b.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/8.3.3.2.cc
+Scheduled for add      tests/CompileTests/ElsaTestCases/std/Makefile.am
+Scheduled for add      tests/roseTests/astFileIOTests/Makefile.am
+Scheduled for add      tests/roseTests/astFileIOTests/astCompressionTest.C
+Scheduled for add      tests/roseTests/astFileIOTests/astFileIO.C
+Scheduled for add      tests/roseTests/astFileIOTests/astFileRead.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_01.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_02.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_03.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_04.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_05.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_05.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_06.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_07.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_08.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_09.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_10.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_11.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_12.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_13.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_14.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_15.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_15.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_16.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_17.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_18.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_18A.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_18B.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_19.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_20.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_21.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_22.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_23.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_24.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_25.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_26.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_27.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_28.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2001_29.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2002_01.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_01.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_02.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_03.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_04.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_05.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_06.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_07.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_08.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_08.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_09.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_09.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_10.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_11.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_12.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_12.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_13.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_14.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_14.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_15.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_16.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_17.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_18.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_19.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_20.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_21.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_22.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_22.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_23.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_24.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_24.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_25.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_25.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_26.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_27.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_28.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_29.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_30.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_31.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_32.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_33.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_34.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_35.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_36.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_37.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2003_38.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_01.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_02.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_03.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_04.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_05.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_06.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_07.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_08.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_09.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_10.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_100.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_101.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_102.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_103.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_104.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_105.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_106.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_107.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_108.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_109.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_11.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_110.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_111.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_112.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_113.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_114.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_115.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_116.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_117.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_118.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_119.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_12.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_120.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_121.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_122.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_123.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_124.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_125.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_126.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_127.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_128.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_129.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_13.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_130.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_131.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_132.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_133.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_134.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_135.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_136.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_137.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_138.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_139.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_14.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_140.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_141.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_142.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_143.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_144.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_145.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_146.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_147.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_148.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_149.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_15.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_150.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_151.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_152.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_153.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_154.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_155.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_156.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_157.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_158.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_159.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_16.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_160.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_161.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_162.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_163.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_164.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_17.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_18.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_19.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_20.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_21.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_22.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_23.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_24.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_25.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_26.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_27.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_28.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_29.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_30.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_31.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_32.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_33.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_34.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_35.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_36.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_37.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_38.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_39.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_40.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_40.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_41.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_42.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_43.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_44.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_45.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_46.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_47.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_48.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_49.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_50.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_51.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_52.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_53.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_54.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_55.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_56.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_57.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_58.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_59.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_60.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_61.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_62.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_63.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_64.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_65.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_66.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_67.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_68.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_69.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_70.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_71.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_72.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_73.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_74.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_75.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_76.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_77.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_78.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_79.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_80.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_81.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_82.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_83.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_84.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_85.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_86.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_87.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_88.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_89.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_90.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_91.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_92.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_93.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_94.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_95.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_96.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_97.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_98.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2004_99.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_01.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_02.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_03.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_04.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_05.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_06.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_07.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_08.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_09.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_10.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_100.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_101.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_102.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_103.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_104.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_105.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_106.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_107.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_108.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_109.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_11.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_110.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_111.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_112.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_113.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_114.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_115.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_116.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_117.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_118.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_119.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_12.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_120.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_121.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_122.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_123.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_124.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_125.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_126.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_127.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_128.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_129.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_13.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_130.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_131.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_132.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_133.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_133.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_134.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_135.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_136.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_137.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_138.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_139.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_14.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_140.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_141.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_142.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_143.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_144.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_145.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_146.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_147.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_148.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_149.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_15.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_15.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_150.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_151.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_152.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_153.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_154.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_154.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_155.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_156.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_157.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_157.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_158.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_158.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_159.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_159.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_16.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_160.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_160.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_17.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_18.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_19.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_20.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_21.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_22.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_23.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_24.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_25.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_26.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_26.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_27.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_28.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_29.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_30.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_31.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_32.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_33.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_34.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_35.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_36.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_37.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_38.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_39.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_40.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_41.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_42.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_43.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_44.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_45.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_46.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_47.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_48.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_49.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_50.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_51.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_52.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_53.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_54.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_55.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_56.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_57.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_58.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_59.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_60.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_61.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_62.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_63.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_64.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_65.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_66.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_67.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_68.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_69.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_70.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_71.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_72.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_73.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_74.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_75.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_75a.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_75b.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_76.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_77.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_78.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_79.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_80.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_81.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_81.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_82.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_83.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_84.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_85.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_86.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_87.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_88.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_88.h
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_89.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_90.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_91.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_92.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_93.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_94.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_95.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_96.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_97.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_98.C
+Scheduled for add      tests/roseTests/astFileIOTests/test2005_99.C
+Scheduled for add      tests/roseTests/astFileIOTests/testAstAttributes_testFile.C
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram6.C
+Scheduled for add      tests/roseTests/astRewriteTests/tauExample.C
+Scheduled for add      tests/roseTests/astRewriteTests/testIncludeDirectiveInsertion.C
+Scheduled for add      tests/roseTests/astRewriteTests/variableDeclaration.h
+Scheduled for add      tests/roseTests/programTransformationTests/constantFoldingTest.C
+Scheduled for add      tests/roseTests/programTransformationTests/inputCode_constantFoldingTransformation.C
+Scheduled for add      tutorial/AST_PDF_Generator.C
+Scheduled for add      tutorial/LoopProcessor.C
+Scheduled for add      tutorial/addComments.C
+Scheduled for add      tutorial/astFileIO_GenerateBinaryFile.C
+Scheduled for add      tutorial/astFileIO_ReadMultipleASTs.C
+Scheduled for add      tutorial/buildCG.C
+Scheduled for add      tutorial/changeFunction.C
+Scheduled for add      tutorial/classicObjectOrientedVisitorPatternMemoryPoolTraversal.C
+Scheduled for add      tutorial/classicObjectOrientedVisitorPatternTraversal.C
+Scheduled for add      tutorial/codeGenerationFormatControl.C
+Scheduled for add      tutorial/collectComments.C
+Scheduled for add      tutorial/constantFoldingTransformation.C
+Scheduled for add      tutorial/constantUnFoldingTransformation.C
+Scheduled for add      tutorial/customGraphGeneration.C
+Scheduled for add      tutorial/customGraphGenerationWithColors.C
+Scheduled for add      tutorial/customGraphGenerationWithColorsAlt.C
+Scheduled for add      tutorial/customGraphGenerationWithFiltering.C
+Scheduled for add      tutorial/dataFlowGraph.C
+Scheduled for add      tutorial/generatingUniqueNamesFromDeclaration.C
+Scheduled for add      tutorial/graphTraversal.C
+Scheduled for add      tutorial/inlineTransformations.C
+Scheduled for add      tutorial/inputCode_BuildCG.C
+Scheduled for add      tutorial/inputCode_ChangeFunctionExample.C
+Scheduled for add      tutorial/inputCode_ControlFlowGraphAnalysis.C
+Scheduled for add      tutorial/inputCode_ExampleCodeCoverageIBMExample.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_blocking.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_dgemm.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_lufac.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_mm.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_tridvpk.C
+Scheduled for add      tutorial/inputCode_NestedQuery.C
+Scheduled for add      tutorial/inputCode_addComments.C
+Scheduled for add      tutorial/inputCode_astFileIO_GenerateBinaryFile.C
+Scheduled for add      tutorial/inputCode_codeGenerationFormatControl.C
+Scheduled for add      tutorial/inputCode_collectComments.C
+Scheduled for add      tutorial/inputCode_collectComments.h
+Scheduled for add      tutorial/inputCode_constantFoldingTransformation.C
+Scheduled for add      tutorial/inputCode_constantUnFoldingTransformation.C
+Scheduled for add      tutorial/inputCode_customGraphGenerationWithColors.C
+Scheduled for add      tutorial/inputCode_dataFlowGraphAnalysis.C
+Scheduled for add      tutorial/inputCode_generatingUniqueNamesFromDeclaration.C
+Scheduled for add      tutorial/inputCode_generatingUniqueNamesFromDeclaration2.C
+Scheduled for add      tutorial/inputCode_inlineTransformations.C
+Scheduled for add      tutorial/inputCode_interveneAtVariables.C
+Scheduled for add      tutorial/inputCode_loopNestingInfoProcessing.C
+Scheduled for add      tutorial/inputCode_partialRedundancyElimination.C
+Scheduled for add      tutorial/inputCode_scopeInformation.C
+Scheduled for add      tutorial/inputCode_tauInstrumenter.C
+Scheduled for add      tutorial/inputCode_testsymbolTableHandling.C
+Scheduled for add      tutorial/inputCode_traversalShortCircuit.C
+Scheduled for add      tutorial/inputCode_typeTransformation.C
+Scheduled for add      tutorial/inputCode_wholeGraphAST.C
+Scheduled for add      tutorial/interveneAtVariables.C
+Scheduled for add      tutorial/loopNestingInfoProcessing.C
+Scheduled for add      tutorial/loopOptimization_functions.annotations
+Scheduled for add      tutorial/nestedQueryExample.C
+Scheduled for add      tutorial/partialRedundancyElimination.C
+Scheduled for add      tutorial/scopeInformation.C
+Scheduled for add      tutorial/selectedFileTranslation.C
+Scheduled for add      tutorial/symbolTableHandling.C
+Scheduled for add      tutorial/tauInstrumenter.C
+Scheduled for add      tutorial/testNewPersistantAttributes.C
+Scheduled for add      tutorial/traversalShortCircuit.C
+Scheduled for add      tutorial/traverseIRnodeTypes.C
+Scheduled for add      tutorial/typeTransformation.C
+Scheduled for add      tutorial/variableAccessWrapping.C
+Scheduled for add      tutorial/visitorMemoryPoolTraversal.C
+Scheduled for add      tutorial/wholeGraphAST.C
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/TAU.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/TAU_tf.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/tauarch.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/tauroot.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Memory/malloc.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/FunctionInfo.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/JavaThreadLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/MultipleCounters.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/OpenMPLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PapiLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PclLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/ProfileGroups.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/ProfileHeaders.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/Profiler.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PthreadLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PyBindings.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PyDatabase.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PyExceptions.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PyGroups.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/PyTimer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/RtsLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/SprocLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauAPI.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauCAPI.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauCompensate.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauFAPI.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauHandler.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauJAPI.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauJava.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauMapping.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauMuse.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TauUtil.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TulipThreadLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/TulipTimers.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/UserEvent.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/WindowsThreadLayer.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/aix.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/bstring.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/fujitsu.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/hitachi.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/pcxx_ansi.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/pcxx_events.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/pcxx_machines.h
+Scheduled for add      tutorial/TAU_INCLUDE_DIR/Profile/tau_types.h
********* Files Scheduled to be removed *********
-Scheduled for removal  docs/doxygenBugs.docs
-Scheduled for removal  docs/Rose/gettingStarted.tex
-Scheduled for removal  docs/Rose/implementation.tex
-Scheduled for removal  docs/Rose/reference.tex.in
-Scheduled for removal  docs/Rose/tutorial.tex.in
-Scheduled for removal  docs/Rose/usingRose.tex
-Scheduled for removal  docs/Rose/AstRewrite/AstRewrite.tex
-Scheduled for removal  docs/Rose/ProgramAnalysis/ProgramAnalysis.tex
-Scheduled for removal  docs/Rose/ProgramAnalysis/db-docs.tex
-Scheduled for removal  docs/Rose/QueryLibrary/QueryLibrary.tex
-Scheduled for removal  docs/Rose/SAGE_III/SageIII.tex
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/Makefile
-Scheduled for removal  src/frontend/SageIII/sage.docs
-Scheduled for removal  src/frontend/SageIII/sage.docs.in
-Scheduled for removal  src/frontend/SageIII/sageClasses.docs
-Scheduled for removal  src/midend/programAnalysis/CallGraphAnalysis/Callgraph.C
-Scheduled for removal  src/midend/programAnalysis/CallGraphAnalysis/Callgraph.h
-Scheduled for removal  src/midend/programAnalysis/CallGraphAnalysis/Classhierarchy.C
-Scheduled for removal  src/midend/programAnalysis/CallGraphAnalysis/Classhierarchy.h
********* WARNINGS *********
********* ERRORS *********

	
2005-10/12  Richard Vuduc 0.8.6c

	* Added ROSE-HPCT, a module to annotate an AST with data collected
	using the HPCToolkit developed by Rice. See
	projects/roseHPCToolkit/README for an
	overview. (projects/roseHPCToolkit/*)

	* Fixed underquoting errors in various autoconf macros, which
	were being reported when using the most recent versions of the
	GNU AutoTools. (config/*.m4, acmacros.tar.gz)

	* Removed extraneous debugging messages in PDFlib-Lite build.
	(src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/makedist.sh)

	
********* TESTED with **************
automake (GNU automake) 1.9.5
autoconf (GNU Autoconf) 2.59
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.4.2
TeX (Web2C 7.4.5) 3.14159
mysql (requires g++ 3.2.2)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   acmacros.tar.gz
>Locally modified   configure.in
>Locally modified   config/EDG.m4
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/choose-backend-compiler.m4
>Locally modified   config/compiler-defs.m4
>Locally modified   config/generate-backend-compiler-specific-headers.m4
>Locally modified   config/qrose.m4
>Locally modified   config/support-doxygen.m4
>Locally modified   config/support-insure.m4
>Locally modified   config/support-mysql.m4
>Locally modified   config/support-purify.m4
>Locally modified   config/support-rpath.m4
>Locally modified   config/support-sqlite.m4
>Locally modified   config/support-visualization.m4
>Locally modified   config/use_edg_source_code.m4
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/rose.cfg.in
>Locally modified   projects/Makefile.am
>Locally modified   src/Makefile.am
>Locally modified   src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/makedist.sh
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      config/acx_libxml2.m4
+Scheduled for add      config/enable-rosehpct.m4
+Scheduled for add      projects/roseHPCToolkit/Make.inc
+Scheduled for add      projects/roseHPCToolkit/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/README
+Scheduled for add      projects/roseHPCToolkit/docs/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/docs/roseHPCToolkit.docs
+Scheduled for add      projects/roseHPCToolkit/examples/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/attach_metrics.cc
+Scheduled for add      projects/roseHPCToolkit/examples/convert.cc
+Scheduled for add      projects/roseHPCToolkit/examples/process_cmdline.cc
+Scheduled for add      projects/roseHPCToolkit/examples/propagate_metrics.cc
+Scheduled for add      projects/roseHPCToolkit/examples/simple_read2.cc
+Scheduled for add      projects/roseHPCToolkit/examples/test_attach01.sh
+Scheduled for add      projects/roseHPCToolkit/examples/test_attach01a.sh
+Scheduled for add      projects/roseHPCToolkit/examples/test_attach02.sh
+Scheduled for add      projects/roseHPCToolkit/examples/test_attach03.sh
+Scheduled for add      projects/roseHPCToolkit/examples/test_highlevel.cc
+Scheduled for add      projects/roseHPCToolkit/examples/test_hl01.sh
+Scheduled for add      projects/roseHPCToolkit/examples/test_prop01.sh
+Scheduled for add      projects/roseHPCToolkit/examples/data/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/Makefile.example
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/example.c
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/usage-Makefile.txt
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/ANALYSIS/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/ANALYSIS/scope_tree.hpcviewer
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/PAPI_FP_OPS.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/PAPI_L1_DCA.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/PAPI_L1_DCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/PAPI_L2_TCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROFILE/PAPI_TOT_CYC.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROGRAM/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/01/PROGRAM/example.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/README
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/PAPI_FP_OPS.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/PAPI_L1_DCA.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/PAPI_L1_DCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/PAPI_L2_TCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/PROFILE/PAPI_TOT_CYC.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/struct_ls/CPP-smg_residual.c
+Scheduled for add      projects/roseHPCToolkit/examples/data/02/struct_ls/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/README
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/PAPI_FP_OPS.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/PAPI_L1_DCA.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/PAPI_L1_DCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/PAPI_L2_TCM.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/PROFILE/PAPI_TOT_CYC.xml
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/struct_ls/CPP-smg_residual.c
+Scheduled for add      projects/roseHPCToolkit/examples/data/03/struct_ls/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/rosehpct.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/profir/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/profir/profir.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/profir2sage/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/profir2sage/profir2sage.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/sage/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/sage/collectors.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/sage/sage.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/util/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/util/general.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/util/tree2.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/util/types.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml/xml.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml-xercesc/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml-xercesc/xml.hh
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml2profir/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/include/rosehpct/xml2profir/xml2profir.hh
+Scheduled for add      projects/roseHPCToolkit/src/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/rosehpct.cc
+Scheduled for add      projects/roseHPCToolkit/src/profir/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/profir/profir.cc
+Scheduled for add      projects/roseHPCToolkit/src/profir2sage/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/profir2sage/attach.cc
+Scheduled for add      projects/roseHPCToolkit/src/sage/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/sage/collect.cc
+Scheduled for add      projects/roseHPCToolkit/src/sage/depth.cc
+Scheduled for add      projects/roseHPCToolkit/src/sage/metric.cc
+Scheduled for add      projects/roseHPCToolkit/src/sage/propagate.cc
+Scheduled for add      projects/roseHPCToolkit/src/util/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/util/general.cc
+Scheduled for add      projects/roseHPCToolkit/src/util/tree_demo.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/xml/elem.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml/handler.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml/parser.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml/util.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/elem.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/handler.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/parser.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/util.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml-xercesc/xml.hh
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/Makefile.am
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/README
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/convert.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/factory.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/process.cc
+Scheduled for add      projects/roseHPCToolkit/src/xml2profir/query.cc
+Scheduled for add      scripts/merge_static_libs.sh
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********


2005-10/10  Richard Vuduc 0.8.6b

	* Upgraded PDF library to PDFlib-Lite v6.0.2, from 3.0. The old
	PDFLibrary is still included in the distribution, but is no longer
	referenced during the build process. This upgrade required
	modifying the build system for PDFlib-Lite to work seamlessly with
	the ROSE build system because PDFlib-Lite expects the source and
	build trees to be the same (see
	src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/ChangeLog-rv). It also
	required minor changes to the existing PDF generation tree
	traversals due to PDFlib's interface changes. (build,
	config/Makefile.for.ROSE.includes.and.libs, configure.in,
	src/3rdPartyLibraries/Makefile.am,
	src/3rdPartyLibraries/MSTL/PDFGeneration.C,
	src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/*, src/Makefile.am)

	* Removed some unnecessary files, including unneeded object files
	and Emacs backup files from the source tree. (*.o, *~)

	* Removed a reference to 'mkinstalldirs' in config/Makefile.am,
	because more recent versions of GNU Autotools do not require
	it. (config/Makefile.am)

	* Fixed a make rule in the dot2gml module.
	(src/roseIndependentSupport/dot2gml/Makefile.am)

	* Fixed a make command which required the user to have a "." in
	her path.
	(exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in)

	* Modified QRose build files to permit proper distribution of its
	source during 'make dist'
	(src/roseIndependentSupport/graphicalUserInterface/src/QR*/Makefile.am, src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/Makefile.am)

	* Fixed a portability-bug in which 'unistd.h' was not being
	included. (tests/roseTests/astPerformanceTests/testPerformance.C)

********* TESTED with **************
automake (GNU automake) 1.9.5
autoconf (GNU Autoconf) 2.59
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.4.2
TeX (Web2C 7.4.5) 3.14159
bison (GNU Bison) 1.875c
mysql (requires g++ 3.2.2) [NONE]
********* ALSO TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.5
TeX (Web2C 7.4.5) 3.14159
bison (GNU Bison) 1.875c
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   build
>Locally modified   configure.in
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   src/Makefile.am
>Locally modified   src/3rdPartyLibraries/Makefile.am
>Locally modified   src/3rdPartyLibraries/MSTL/PDFGeneration.C
>Locally modified   src/roseIndependentSupport/dot2gml/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRGui/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRTree/Makefile.am
>Locally modified   src/roseIndependentSupport/graphicalUserInterface/src/QRoseLib/Makefile.am
>Locally modified   tests/roseTests/astPerformanceTests/testPerformance.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/ChangeLog-rv
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/PDFlib.dsw
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bootstrap
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/configure.in
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/distdirs.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/distfiles.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/makedist.sh
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/pdflib-config.in
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/Carbon.r
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/businesscard.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/businesscard.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/chartab.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/chartab.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/examples_c.dsw
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/hello.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/hello.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/hellodl.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/image.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/image.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/invoice.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/invoice.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/pdfclock.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/pdfclock.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/pdflibdl.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/pdflibdl.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/quickreference.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/quickreference.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/c/samples.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/businesscard.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/businesscard.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/chartab.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/chartab.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/examples_cpp.dsw
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/hello.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/hello.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/image.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/image.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/invoice.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/invoice.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/pdfclock.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/pdfclock.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/pdflib.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/pdflib.hpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/quickreference.cpp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/quickreference.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/cpp/samples.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/LuciduxSans-Oblique.afm
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/LuciduxSans-Oblique.pfa
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/blocks.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/boilerplate.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/nesrin.jpg
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/reference.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/data/stationery.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/PDFlibException.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/businesscard.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/chartab.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/hello.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/image.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/invoice.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/pdfclock.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/pdflib.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/pdflib_java.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/quickreference.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/businesscard.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/chartab.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/hello.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/image.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/invoice.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/pdfclock.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/jsp/quickreference.jsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/businesscardServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/chartabServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/helloServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/imageServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/invoiceServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/pdfclockServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/java/servlet/quickreferenceServlet.java
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/businesscard.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/chartab.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/hello.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/image.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/invoice.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/pdfclock.cgi.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/pdfclock.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/pdflib_pl.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/pdflib_pl.pm
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/quickreference.pl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/perl/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/businesscard.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/chartab.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/hello.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/image.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/invoice.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/pdfclock.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/quickreference.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/businesscard.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/chartab.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/hello.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/image.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/invoice.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/pdfclock.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/php/examples.php5/quickreference.php
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/businesscard.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/chartab.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/hello.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/image.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/invoice.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/pdfclock.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/pdflib_py.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/quickreference.py
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/python/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/businesscard.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/chartab.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/hello.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/image.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/invoice.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/pdfclock.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/pdflib_tcl.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/pkgIndex.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/quickreference.tcl
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/bind/pdflib/tcl/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/aclocal.m4
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/config.guess
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/config.sub
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/install-sh
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/ltmain.sh
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkbind.inc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkcom.inc.win
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkcommon.inc.in
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mklibs.inc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkmainlib.inc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mkprogs.inc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/config/mksubdirs.inc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/PDFlib-license.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/PDFlib-license.rtf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/grid.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/PDFlib-Lite-license.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/PDFlib-manual.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/PDFlib-purchase-order.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/changes.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/compatibility.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/licensekeys.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/readme-source-mac.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/readme-source-unix.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/readme-source-windows.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/doc/pdflib/readme.txt
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/fonts/pdflib.upr
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/fonts/print_glyphs.ps
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/PDFlib.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/adler32.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/compress.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/crc32.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/deflate.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/deflate.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/flate.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/flate.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infblock.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infblock.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infcodes.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infcodes.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inffast.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inffast.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inffixed.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inflate.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inftrees.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/inftrees.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infutil.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/infutil.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/trees.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/trees.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/uncompr.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/zconf.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/zlib.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/zutil.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/flate/zutil.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/README
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcapimin.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcapistd.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jccoefct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jccolor.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcdctmgr.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jchuff.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jchuff.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcinit.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcmainct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcmarker.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcmaster.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcomapi.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jconfig.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcparam.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcphuff.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcprepct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jcsample.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jctrans.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdapimin.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdapistd.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdatadst.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdatasrc.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdcoefct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdcolor.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdct.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jddctmgr.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdhuff.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdhuff.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdinput.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdmainct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdmarker.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdmaster.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdmerge.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdphuff.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdpostct.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdsample.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jdtrans.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jerror.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jerror.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jfdctflt.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jfdctfst.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jfdctint.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jidctflt.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jidctfst.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jidctint.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jidctred.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jinclude.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jmemmgr.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jmemnobs.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jmemsys.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jmorecfg.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jpeg.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jpeg.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jpegint.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jpeglib.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jquant1.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jquant2.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jutils.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/jpeg/jversion.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_arc4.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_arc4.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_carbon.r
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_chartabs.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_config.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_core.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_core.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_corefont.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_corefont.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_coremetr.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_crypt.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_crypt.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_ebcdic.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_ebcdic.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_encoding.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_encoding.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_exports.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_file.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_file.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_font.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_font.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_generr.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_geom.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_geom.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_geom.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_md5.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_md5.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_optparse.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_optparse.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_output.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_output.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_sbuf.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_sbuf.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_scope.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_scope.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_unicode.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_unicode.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_util.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pc_util.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pdcore.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdcore/pdcore.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/PDFlib_dll.res
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_actions.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_afm.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_annots.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_block.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_bmp.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_ccitt.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_cid.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_cid.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_color.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_color.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_defopt.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_document.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_draw.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_encoding.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_fields.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_filter.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_font.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_font.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_generr.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_gif.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_gstate.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_hkscmyk.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_hkslab.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_hostfont.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_hyper.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_icc.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_icc.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_icc9809.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_icclib.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_icclib.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_image.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_image.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_intern.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_jpeg.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_jpx.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_kerning.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_keyconn.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_layer.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_layer.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_object.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_opi.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_page.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_page.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_pantlab.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_params.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_params.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_pattern.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_pdi.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_pfm.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_png.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_resource.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_shading.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_subsett.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_tagged.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_tagged.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_template.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_text.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_textflow.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_tiff.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_truetype.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_truetype.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_type1.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_type3.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_util.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/p_xgstate.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdf.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib.rc
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib_dll.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib_pdi.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/pdflib_pdi_dll.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/pdflib/resource.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/png.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/png.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/png.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/png.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngconf.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngerror.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngget.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngmem.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngread.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngrio.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngrtran.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngrutil.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngset.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngtrans.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngusr.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/png/pngvcrd.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/port.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/t4.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_auxx.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_close.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_codec.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_color.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_compress.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_dir.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_dir.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_dirinfo.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_dirread.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_dumpmode.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_error.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_extension.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_fax3.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_fax3.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_fax3sm.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_flush.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_getimage.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_jpeg.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_luv.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_lzw.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_next.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_ojpeg.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_open.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_packbits.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_predict.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_predict.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_read.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_strip.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_swab.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_thunder.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_tile.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_unix.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_version.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_warning.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tif_zip.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiff.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiff.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiff.mcp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiffconf.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiffio.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiffiop.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/tiffvers.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/libs/tiff/uvcode.h
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/Makefile
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/getopt.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/pdfimage.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/pdfimage.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/pdfimpose.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/pdfimpose.dsp
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/text2pdf.c
+Scheduled for add      src/3rdPartyLibraries/PDFlib-Lite-6.0.2rv/progs/pdflib/text2pdf.dsp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/Makefile.am
********* Files Scheduled to be removed *********
-Scheduled for removal  developersScratchSpace/Markus/Makefile.am~
-Scheduled for removal  developersScratchSpace/Markus/OmpTransformations/Makefile.am~
-Scheduled for removal  projects/highLevelGrammars/testEnum.o
-Scheduled for removal  src/.pure
-Scheduled for removal  src/.purify
-Scheduled for removal  src/3rdPartyLibraries/PDFLibrary/Makefile.am~
-Scheduled for removal  src/3rdPartyLibraries/coco/cplus2/Makefile.am~
-Scheduled for removal  src/3rdPartyLibraries/coco/sources/Makefile.am~
-Scheduled for removal  src/3rdPartyLibraries/coco/taste/slangs.c.bak
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/const_ints.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/debug.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/error.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/float_pt.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/host_envir.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/il.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/il_display.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/il_read.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/il_to_str.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/il_walk.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/mem_manage.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/target.o
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/disp/types.o
********* WARNINGS *********
********* ERRORS *********




2005-09-12 Dan Quinlan 0.8.6a

	* New IR nodes added in the last year (not all in this version 0.8.6a)
             SgNamespaceDeclarationStatement
             SgNamespaceDefinitionStatement
             SgNamespaceAliasDeclarationStatement
             SgUsingDirectiveStatement
             SgUsingDeclarationStatement
             SgNamespaceSymbol
             SgTemplateInstantiationDirectiveStatement
             SgClassSymbol
             SgFileList 
             SgDirectory
             SgDirectoryList
             SgClassType
	  someone ask for this list.

	****** (12/7/2004): Commented out tests in:
	  ROSE/projects/arrayOptimization/tests (not clear what the
	  problem is here, likely must discuss this with Qing).
	  It appears that the tests in the tests directory are done before
	  the source files in the arrayOptimization directory are
	  compiled!

	* Added relational operators for Sg_File_Info objects
	  (part of testing of source file position information required
	  for copy-based unparsed).  

	* Added tests of startOfConstruct() and endOfConstruct()
	  for each SgStatement (part of testing of source file position 
	  information required for copy-based unparsed).

	* Modified construction of directory graph for ROSE
	  (note that directories with "++" are ignored within the
	  exclude list):
	     $(top_srcdir)/scripts/lsdot $(top_srcdir) --format=ps --exclude='CVS\|PetscCode\|PerlEnabledTestingFramework\|NEW_EDG\|boost_1_31_0\|KOLAH\|KULL\|pythonDir\|TRASH\|coco\|Analysis\|AstProcessingLib\|AST_RewriteMechanism\|autom4te.cache\|BJMmacros\|dqDevelopmentDirectory\|ContainerParallelizer\|EDG\|ExamplePreprocessors\|g++_HEADERS\|GNU_HEADERS\|include\|LoopProcessing\|msDevelopment\|MSTL\|NEW_EDG_3.0\|OmpPragmaParser\|ProgramAnalysis\|ROSETTA\|SAGE\|TransformationSpecification\|util\|testDoxygen\|ckpt\|OLD_aterm-bundle-2.2' --basename -o=roseDirectoryMap.ps;

	   If this graph gets too large then LaTeX failes to process the
	   file. I have excluded Boost from the graph (was in my
	   development directory).

	* Added support for qualified names for function reference
	  expressions.

	* Added support for friend functions within function reference
	  expressions (which should not be qualified).

	* Added support for type modifiers (e.g. "const") when used with
	  typedefed types in declarations (types derived from declarations).
	
	* Added support for recognizing implicit casts within initializer
	  expressions and supressing the generation of explicit casts
	  within the ROSE generated code. This makes unparsed code much
	  more precisely replicate the original source code.  Previously,
	     std::string *s = NULL;
	  would unparse as:
	     std::string * = (std::string *)(0);
	  but now unparses as:
	     std::string * = (0);
	  The difference is more dramatic with the much longer types 
	  present within Kull (deeply nested template types).

	* Added support for more complex qualified name handling
	  (see test codes test2004_132.C - test2004_136.C).
	  Does not appear to have fixed the problem with Kull 
	  however :-).

	* Reordered pre-initalization list for SgInitializedName and
	  SgVariableDefinition constructors that we explicitly defined
	  in the ROSETTA/Grammar/*.code files.

	* Fixed bug in terminal.C to prevent output of initialization of
	  data members that contain an empty initialization string.
	  This eliminates pages of warnings when compiling Cxx_Grammar.C.

	* Fixed inlined New_File_Info() function in
	  ROSETTA/Grammar/statement.code to use the copy constructor
	  for Sg_File_info so that the filename, AND line number AND
	  column number would be copied (instead of just the filename).
	  this allows for more accurate information about source file
	  position, that is at most off by a line or so. The column
	  number is the least accurate information as a result of the
	  use of the copy constructor to build a Sg_File_Info object.
	  We will try to make the source position information more
	  accurate over time, but EDG does not store all source location
	  information so some information may not ever be exact (constants,
	  for example, do not have EDG source position information.

	* Oddly enough, some types are automatically translated by EDG to 
	  be in the std namespace without the namespace ever having been
	  explicitly visited.  This appears to be part of the C++
	  standard.  For example, the first apearance of the va_list
	  is represented internally as std::va_list (even though no
	  "namespace std" has appeared.  Although this appears to
	  be true, I can't generate the behaviour in a small test code!
	  After a little more work it is clear that this is bizzar.
	  The special case of va_list handling is now implemented within
	  the EDG/Sage translation.  The following comment is added to the
	  code:
            // DQ (11/21/2004): Added support for non-standard typedefs and the case of builtin va_list
            // this case of builtin va_list type generates a type which is in the std scope but for which 
            // we may not have seen the namespace std yet so the SgScopeStatement is not been generated.  
            // The comments in the code below make it clear the EDG does special processing of the stdarg.h 
            // file and never really parses it so that we can see the namespace that is defined in it.  
            // This is all very EDG specific non-standard C++ processing and so it is represented as a 
            // special case in the EDG -> Sage III translation.  And of course it was an ugly thing to 
            // finally find and debug!  For our purposes we can ignore the whole thing (defering to header 
            // files and the EDG front-end to handle this correctly).  Ignoring it might mean that the 
            // symbol tables within Sage III might be missing references to va_list, but it is not clear 
            // that any compile handles va_list in a standard way.


	* Fixed conversion operators (used in SWIG generated files)

	* Fixed address operator (used in SWIG generated files)

	* Fixed cases of template parameters being pointers to existing
	  defined types (see test2004_144.C). The first bug was when the 
	  pointer was of a class type (non-template).  the second bug was
	  when the pointer was of a templated class (instantiated
	  template class).  Generated demonstration of typedefs being 
	  unparsed using the base type instead of the alias type (see
	  test2004_145.C).

	* Rewrote unparsing of variable declarations to be refactored,
	  shorter, clearer, and to handle qualified names for
	  SgInitializedName objects.

	* (12/3/2004): Added Alin Jula's ROSETTA generated destructors
	  to ROSE.  Later commented out all locations where we forced the 
	  use of explicitly built destructors.  So ALL ROSETTA generated
	  classes now use the generated destructors.  However, at present
	  I have disabled the deletion of any member data from ALL
	  generated classes.  This will be turned on in a incremental way
	  at some point.  

	* The developersScratchSpace/Dan/preprocessor.C used to test
	  the source code (previous bugs and work in progress) now
	  implements the traversal to delete the parts of the AST that
	  are traversed.  Note that only the traversal as Markus designed
	  it to be used work here, all other attempts to call the 
	  get_traversalSuccessorContainer() member function, fail at some 
	  point (not sure why that would be)!

	* (12/4/2004) Fixed memory leaks in EDG.  It turns out that EDG has no fix
	  for most of these since it only is able to free it's memory
	  regions (which is a significant part of the problem, but not
	  enough).  So the solution was record all mmeory allocated to
	  an STL list (and remove elements reallocs and freed
	  explicitly).  Then after the EDG phase is done we free all
	  memory in the STL list (and the STL list itself).  This works
	  well and appears to be robust in compiling large applications.
	  However, it fails to work with theAST rewrite mechanism, so 
	  the whole think it turned off until I get a chance to debug that
	  part. 

	* DQ (12/6/2004): Note current rewrite mechanism is not working 
	  (even though other tests pass) because the scopes of newly
	  generated IR nodes fron the string based AST generation do not 
	  have scopes set correctly! Also the EDG memory can not be freed 
	  for the rewrite system to work!  Everything else appears to work.

	* Added directory path of source file to paths specified with
	  -I in compilation with back-end compiler (e.g. compiling the
	  rose generated file using g++).  So that we get the effect of
	  searching the source file's directory for header files even when
	  compiling the generated source file with the back-end compiler.
	  This is a little bit of a tricky details which forces many
	  header files defined with the source file to not compile within 
	  Kull.

	* Fixed long standing problem that the object file generated from
	  backend copilation was previously rose_<original file name>.o.
	  Backend compilation now correctly generates an object file
	  with the name <original file name>.o, just as would any
	  compiler. Note that the name can still be over ridden by the
	  specification of an object file name using the "-o" option.

	* Renamed ROSE/src/frontend/SageIII/sageSupport.[hC] to
	  sageInterface.

	* Built namespace (SageInterface) for location of all interface
	  functions which manipulate the Sage III AST directly.  
	  Name was agreed to by Dan, Qing, and Rich.

	* Moved set_name() member function of SgInitializedName class to
	  be a member of the namespace SageInterface.  The get_name() and
	  set_name() member functions are now generated by ROSETTA (as
	  they shuld be), and have the usual semantics.

	* Fixed handling of explicitly defined member operators operator*() 
	  operator->() and operator[]() so that they unparse to form 
	  correct code. It was only some strange mixed cases of there
	  use together that was a problem. For example:
               class A
                  {
                    public:
                         A();
                         A( int *x, int y);
                         int & operator[](int i);
                         A *operator->() const { return Aptr; }
                         A& operator*() const  { return *Aptr; }

                         A*  Aptr;
                         A** Aptrptr;
                  };
               A a;
               A* aptr = &a;
               A** aptrptr = &aptr;
               aptr->operator[](1);
               (*aptr)[1];
               (*aptrptr)->operator[](1);
               (*(*aptrptr))[1];
               (aptr->Aptr)->operator[](1);
               (*(aptr->Aptrptr))->operator[](1);

	    // The following two statements are exactly the same (but expressed with different syntax)
               a->operator[](1);
            // This is the same as the statement above but using operator syntax
               a.operator->()->operator[](1);
            // Here, "a[1];" is really the same as "a.operator[](1)", but we want 
            // to unparse it as "a[1]" to keep the generate code simple!
               a[1];
            // This is correct code, but caused an error in the unparser!
               (*(a->Aptr))[1];
            // This is a meaningless statement but is legal C++ (C++ trivia)
            // Note that it is the same as "a->;" but this is not legal code! (this now works in ROSE!)
               a.operator->();
               a->Aptr;
               a_pointer->operator->();
               a_pointer->operator->()->Aptr;
            // Note that "(*a_pointer)[1];" and "(*a)[1];" are not the same (since one is the derefencing 
            // of a pointer and the other is the derefence operator, "operator*()", called on the object!).
               (*a_pointer)[1];
               (*a)[1];
            // Also, these are the same (if A defines such operators as operator*() and operator[]()).
               (*a)[1];
               a.operator*().operator[](1);

	* Added extra data member to SgInitializedName object so that when
	  the SgInitializedName object is used within a
	  preinitialization list (for constructors) any template names
	  can be reset from mangled forms (such as "A____L9" to
	  "A<int>").  Initialized names in preinitialization list are now 
	  classified as virtual_base_class, nonvirtual_base_class, and
	  data_member (meaning not a base class).  This fixes another bug 
	  in Kull.

	* Removed assertion that required curr_source_sequence_entry != NULL
	in sage_gen_cast() of EDG/Sage III translation.  Casts appearing
	in global scope (with no functions (other scopes) declared) caused 
	assertion to fail (code was too simple to have been caught previously).

	* Modified configuration to copy ROSE/config/Python-version-2.2.h
	  to the compile tree ROSE/g++_HEADERS directory.  Later we can
	  make a non-g++-specific directory for such header files that 
	  ROSE requires.  At the moment Python is the only special case.  
	  Within this fix the Python.h header file is modified to 
	  include "#include <iostream.h>" at the top of the file.
	  This is required to force many g++-specific macros to be defined
	  (which must be explicitly defined in ROSE to mimic g++).
	  Python in general does not like to have system header files
	  include before it's own header files since it appears to
	  redefine some of them (very silly design move in my opinion!).
	  This is all required because we are compiling Kull, and Kull
	  uses SWIG, and SWIG generated files include Python.h.
	  The configuration code to copy the Python.h file into the
	  g++_HEADERS directory is located at the end of the 
	  ROSE/config/create_system_headers file.  Since I'm testing ROSE
	  will Kull and Kull is using Python version 2.2, I have used the 
	  version 2.2 Python.h header file.  This can be changed by
	  modifying the configuration code that does the copy.



	* Added support in unparser for unary oparators:
	       operator&(), operator*(), operator|(), operator~()
	  When these were binary operators they were being confused as
	  unary operators.  C++ allows them to be used as both unary and
	  binary operators.


	* Adding support for template functions parameter lists which don't
	  help select the required specialization.
	         template <typename T> void foo();
	  must be called as: 
	         foo<int>();
	  since the function parameter list is insufficent to select the 
	  specialization required. This issue appears for templated member
	  functions as well (but not for member function of templated
	  classes).  
	  One general question: How do we know when to include the 
	  template arguments in the templated function name? Clearly
	  they are redundant when the function parameters are sufficient
	  to select a unique specialization.  For now we will always
	  append the template parameters to the templated function or
	  member function name, to be safe.


	* Added more error checking ROSE_ASSERT to SgFunctionParameterList
	  generated code.  


	* Added support for specification of compiler generated code (e.g
	  implicit cast operators) which don't exist in the source code
	  and yet exist in the AST without correct filename, line or
	  column location data.  e_compiler_generated filed added to 
	  Sg_File_Info::classifier enum (required access functions were
	  also added, setCompilerGenerated(), unsetCompilerGenerated(),
	  and isCompilerGenerated()).  These are set in the EDG/Sage 
	  interface code.

	* Fixed many details of support for expressions of pointers to 
	  functions and data members which mixed overloaded operator->(),
	  operator*(), and operator&() with the normal C++ ->,*,&
	  operators.  

	* Removed special case of parenthesis handling within the 
	  precedence evaluation for the C++ dereference operator and the
	  overloaded operator*() (overloaded dereference operator).
	  This eliminated the need to force the addition of parenthesis
	  within the unparsing of SgDotExp and SgPointerDerefExp.
	  this whole area of work is particilarly tedious.

	  Example test code includes (see test2004_149.C test2004_159.C and test2005_08.C):
	       class X {
                    public:
                         X & operator+ ( const X & x );
                         X *operator->() const;
                  };

               int foo() {
                    X x;
                 // All three of these statements are identical (different syntax for the same function calls) 
                 // They generate an error "error: parse error before `+' token"
                    x->operator+(x);
                    (*(x.operator->())).operator+(x);
                    (*(x.operator->())) + x;

                 // This is similar to just saying "x;" but with a function call to accomplish it!
                    (*x.operator->());  // This works properly
                    x.operator->();
                 // x->;  // note that this is not allowed in C++ (but would be the same as the previous statement)!
                  }

	  Generates following lines of code for function foo above
	  (note that all of the parenthesis are required):
	       (*x.operator->())+x;
               (*x.operator->())+x;
               (*x.operator->())+x;
               *x.operator->();
               x.operator->();

	* Fixed use of nested template names in function and class names
	  (filtered EDG generate names to eliminate occurance of ">>"
	  in nested template names).  Fixed for member functions, and
	  class names, but might not be fixed uniformally within EDG/Sage
	  connection.

	* Fixed support for function pointers of typedefed member
	  functions (see test2005_10.C).

	* Fixed handling of file info objects for arguments of member
	  function pointers where the function type is a typedef type.
	
	* Added field to SgTemplateArgument to record if the template
	  argument appears explicitly in the source code.  Then we only
	  output those template arguments that appear explicitly.  This
	  fixes two problems:
	     1) when to use template arguments in the names of template
	        functions and member functions (where function parameters
	        don't resolve which overloaded function to call).
	     2) when the expanded template arguments include references to 
	        private types of a class (test2005_12.C).
	  However, it appears that this EDG information is not always
	  correct! So I have output all template arguments, until it is
	  fixed in EDG.

	* Fixed unparsing of types to form template arguments so that
	  definitions would not be unparsed.  Added SgUnparse_Info
	  object and set appropriate internal flags in the SgUnparse_Info
	  object so that definitions would be skipped.  See test2005_14.C.
	
	* Added comment about fix to getTypeName() which returns "enum"
	  for an SgEnumType instead of the name of the enum type. Tom
	  Epperly is fixing this and will send me the fix.
	 

	* fixed name mangling for pointers to autonomous classes hidden in
	  typedefs. 
	       typedef struct {
	           int            id;          /*identifier of the compound array */
	          } *XYZ;
	       extern XYZ *functionReturningXYZ(void);
	  In this case the function type was mangled with the wrong name
	  (incompletely mangled since the return type class name was empty
	  (since it was hidden in a typedef)).  The solution was to detect
	  such empty names and use the name of the typedef instead (so
	  that there would be a valid name to use in the mangling and so 
	  a valid name to use as a key in the hash table for the function
	  symbol table to avoid collissions with other function having
	  different return types.

	* Fixed handling of unspecified initializers as in:
	       X *x5 = new X[i+j];
	  and
	       X *x3 = new X[2];
	  which use the default arguments (none) for initialization.

	* Fixed unparsing of #include files within SgBasicBlock
	  lists of statements.  Previously we didn't check for the
	  file name to match the unparsed file and the statements in the 
	  include file were unparsed plus the include directive which
	  caused for multiple definitions of each variable declaration.

	* Fixed accuracy of ending position of closing brace in
	  SgBasicBlock (was being overwritten in the EDG/Sage connection).

	* Fixed unparsing of statments in SgBasicBlock which didn't check
	  to see if the file name associated with each statement matched
	  the current file. Was a problem for the example code below.

	* Fixed handling of comments (and particularly #include directives
	  when they appear at the end of SgBasicBlocks and must appear
	  before the closing brace.  Example code (test2005_27.C):
	       #include "test2005_26.h"
	       void foo()
	          {
	            #include "test2005_26.h"
	          }
	  The senario above is not correctly handled for SgBasicBlock,
	  SgClassDefinition, SgNamespaceDefinition, and SgEnumDeclaration.
	  This should be all the relavant cases.

	* Fixed handling of "operator>>" which is an exception to
	  when we process EDG names containing ">>" to generate "> >"
	  to generate correct nested template names.  Clearly 
	  "operator>>" should never be processed into "operator> >".

	* Fixed handling of character literals.  Previously these
	  were output as there interger values (not very clever). Where
	  such character literals were used to function parameters, 
	  this would cause the wrong function to be resolved (one taking
	  and "int" instead of a "char" (or perhaps no function would be
	  found to resolve, since there is no auto type promotion from
	  integer to char (since precission would be lost)). the unparser
	  was modified to correctly out put charater literals and the 
	  cases of  '\0', '\1', '\2', '\3', '\4', '\5', '\6', '\n', '\t', 
	  '\v', '\b', '\r', '\f', '\a', '\\', '\'', '\"', char(127) are handled
	  explicitly (as required). Note that ASCII DEL character literal
	  has no name in C or C++ (I thnk) so it is handled as a special case of
	  a decimal cast to a char (C++ trivia). See test2005_31.C for
	  details. Note that octal and hexademimal char literals
	  (e.g. '\127' and '\x000') are normalized to their ASCI character 
	  or C++ name equivalents (e.g. 'W' and '\0', respectively).

	* Fixed handling of "in-class initialized static const integer
	  members."  It seems that static const integer (or char, long, 
	  etc.) data members may be alternatively initialized directly
	  within the class.  When they are declared this way the use of
	  such variables will be normalized by EDG to put into place of
	  the named constant the conatant value.  Constant propogation.
	  Interestingly this only applies to integer types (including
	  char, long, short, enums etc., but not float or double).
	  In general it appears that integer based constants are special
	  some constants are more special than others :-).  In this case
	  the AST presenting is the data member access is constructed and
	  a constant insterted at the last moment.  The direct traversal
	  and generation of Sage III forces the generation of an AST which
	  literally translates to x->42 (due to a number of bugs, each
	  of which had to be fixed. What EDG wants to generate is x,42
	  as an expression, using the comma operator.  What I have done is
	  ignored the generation of the AST representing compiler
	  generated use of the comma operator and just generated the
	  42 as a constant expression instead.  Example codes showing 
	  valid C++ code using in-class initialization of static const int:
	       class X
	          {
		    public:
		      // Notice that we can initialize static constants within the class!
		         static const int ultimateAnswer = 42;
		  };
	       void foo()
	          { 
	            X x; 
	            var = X::ultimateAnswer; // generates "var = 42;"
	            var = x.ultimateAnswer;  // generates "var = 42;" but used to be an error
	          }
	  The test code test2005_32.C shows more interesting examples.

	* Fixed bugs in ROSE represented by test codes test2005_33.C
	  through test2005_42.C.  

	* Added test code from Andreas (Diffpack problems) test codes 
	  test2005_43.C through test2005_49.C. All passed but one
	  (test2005_48.C) demonstrates a comment put in the wrong place 
	  within a union.

	* Fixed up the configuration so that
	    --with-alternate_backend_Cxx_compiler=
	  could be use to specify a path to a specific compile (such as
	    --with-alternate_backend_Cxx_compiler=/usr/apps/gcc/3.4.3/bin/g++
	  where the g++ is stripped off (using `basename /usr/apps/gcc/3.4.3/bin/g++`
	  to generate "g++" for internal comparision agains supported
	  backend compilers.  Previously the compiler was specificed such as
	       --with-alternate_backend_Cxx_compiler=g++
	  but it was not possible to specific a different version than the
	  one in your path.  this is helpful since we want to compile KULL
	  using the 3.4.x version of the g++ compiler, even though we use
	  the 3.3.2 version for compiling ROSE itself.  The two don't have
	  to be the same and this allows them to be different.  Several
	  locations in the configuration files had to be modified to make
	  this work (but it was not hard, if the now works).  Note that 
	  the header files are generated from the version of the compiler
	  used by the backend compilation (or so I hope).

	* Fixing up header files so that the 3.3.x header files can be
	  used (currently they generate an warning where __GNUG__ and
	  __GNUC__ = 3 are defined because __flexarr is defined as "[]"
	  instead of "[1]" (because the /usr/include/cdefs.h forces the
	  wrong definition for GNU (I think).  EDG catches the warnings
	  which GNU does not.
	  This code (from /usr/include/cdefs.h is wrong, I think):
	/* Support for flexible arrays.  */
	#if __GNUC_PREREQ (2,97)
	/* GCC 2.97 supports C99 flexible array members.  */
	# define __flexarr	[]
	#else
	# ifdef __GNUC__
	#  define __flexarr	[0]
	# else
	#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
	#   define __flexarr	[]
	#  else
	/* Some other non-C99 compiler.  Approximate with [1].  */
	#   define __flexarr	[1]
	#  endif
	# endif
	#endif

	  The best solution i have is to define __flexarr to [1] and 
	  live with the warning about the redefinition.

	* Fixed empty namespace definitions (which appeared first in the
	  g++ 3.4 header files).

	* Added GNU extensions (turned them on in EDG and added required
	  code to support them in ROSE).  This eliminated the requirement
	  to patch any of the gnu header files which simplifies their
	  use within ROSE (and make the use of ROSE less sensitive to
	  different versions of g++). ROSE had become overly fragile
	  and dependent upon g++ version 3.3.2 n the previous release.

	* Added header file ROSE/g++_HEADERS/rose_edg_macros_and_functions_required_for_gnu.h
	  and used EDG mechanism to force this header file to be read
	  before any other so that we could define numerous macros and
	  functions required (and not set by EDG) for GNU compatability.
	  Some are specific to use with the 3.4 header files.

	* Modified macros defined on commandline to the internal EDG pass
	  within ROSE.  We not correctly extract the GNU specific
	    variables so that the gnu header files can be correctly 
	  interpreted by EDG (which sets some of these incorrectly, like
	  __GNUC_MINOR__ and __GNUC_PATCHLEVEL__.

	* Removed special handling for Python.h, which is no longer
	  required because of the new level of compatability between
	  ROSE and GNU.  So we no longer need to copy a special modified
	  version of Python.h into the ROSE system header files. this
	  also fixed a strange bug in ROSE (test2005_54.C).

	* Fixed output of function of template classes, function templates
	  and member function templates to avoid output of trailing "<>"
	  in their function name.  The substring is useless if no template
	  arguments are explicitly specified.  Plus "std::endl<>" is a 
	  bug in g++ version 3.4.3, though not versions of g++ previous to
	  3.4.x.  So this effected the compilation of Kull in 92 files.

	* Fixed quoted strings specificed on the command line when used
	  with a backend compiler which does not handle quotes well (such
	  as /usr/local/bin/mpiCC on LC machines).  The problem is fixed
	  in ROSE/src/ROSETTA/Grammar/Support.code and has the following comment:
	       // DQ (4/14/2005): Fixup quoted strings in args fix "-DTEST_STRING_MACRO="Thu Apr 14 08:18:33 PDT 2005" 
	       // to be -DTEST_STRING_MACRO=\""Thu Apr 14 08:18:33 PDT 2005"\"  This is a problem in the compilation of
	       // a Kull file (version.cc), when the backend is specified as /usr/apps/kull/tools/mpig++-3.4.1.  The
	       // problem is that /usr/apps/kull/tools/mpig++-3.4.1 is a wrapper for a shell script /usr/local/bin/mpiCC
	       // which does not tend to observe quotes well.  The solution is to add additional escaped quotes.


	* Removed SgFunctionDeclaration data members:
	      SgFunctionDefinition *forwardDefinition; and
	      SgFunctionDefinition *definition_ref; 
	  since they are redundand with the pointers to the defined more
	  generally in SgDeclaration (thus for all declarations):
	      SgDeclarationStatement *firstNondefiningDeclaration; and
	      SgDeclarationStatement *definingDeclaration;
	  
	* Fixed support for SgFunctionDeclarations use of the 
	      SgDeclarationStatement *firstNondefiningDeclaration; and
	      SgDeclarationStatement *definingDeclaration;
	  This was on a list of things to do and now this mechanism works
	  the same for SgFunctionDeclarations as for SgClassDeclarations
	  and SgTypedefDeclarations. I think that was all that was left.

	* Added new IR node for explicit template instnatiation
	  directives. Modified ROSETTA input, EDG/Sage connection code,
	  and unparser to generate the directives.  Force fixing of 
	  defining vs. nondefining declarations for function declarations
	  (see above).

	* Added fixup of defining and nondefining declarations for all
	  declarations in ROSE/frontend/SageIII/ASTFixes.C.  This code
	  fixes a problem where the second forwad declaration cannot
	  be reached to set its defining declaration pointer properly
	  when the defining declaration exists.	

	* Fixed explicit instantiation of template member functions.
	  Supressed redundent output of specialized template member
	  function.  This whole subject of when to output the specialized
	  versions of template classes, functions, and member functions
	  (and likely a few other contructs) needs to be reviewed (I
	  think).

	* Fixed output of long double (was just plain wrong!).  

	* Fixed output of float, double, and long double to fix
	  precision (set to 12, 24, 48; respectively).  Trailing 
	  zeros and roundoff error appear to be automatically removed
	  by the stream operators.  So slightly over specifying the
	  precision seems to provide the best results.

	* Found the location of the original expressions used within
	  constant folding within EDG.  Plase a comment there but later
	  we can suplement the SageIII AST with the exact constant
	  expression allone with the constant folded value which we 
	  presently store.  I think that the SgValue object could be
	  extended to include a pointer to the original constant
	  expression.  Providing both within the AST is best since it
	  permits both program analysis to know the constant folded value
	  while permiting the source-to-source translation to output
	  exact constant expression values.

	* Set FRIEND_AND_MEMBER_DEFINITIONS_MAY_BE_MOVED_OUT_OF_CLASS to
	  FALSE in EDG (host_envir.h).  This removes the previous
	  normalization of functions defined in classes being defined 
	  outside of the class (it also simplifies how we generate code
	  for templates which will compile properly (definitions were out
	  of order).  The problems with this are non-trivial.  I have had
	  to fix numerous bugs assosciated with the use of variabled
	  before they apear in declarations (common within member
	  functions which use variables defined lower down in the class).
	
	* Fixed references to static data members use in functions
	  appearing before their declaration.

	* Added get_qualified_name() member function to
	  SgFunctionDeclaration (see test2005_70.C).
	  This test code shows that the same function can be defined in
	  two different namespaces, only the qualified name would
	  distinguish them.  This test code was not previouly an error,
	  but demonstrated an interface issue (lack of symmetry).

	* Removed SgSymbolPtrList (since we compute qualified names on the
	  fly to permit simpler handling of transformations!).  This was
	  part of an early trial implementation qualified name handling
	  that was not a very clever idea.  We now compute qualified names
	  on the fly, though this requires storage of the scope for nearly
	  all declarations.  the scope is required since C++ declarations
	  and definitions can be quite separated and possibly ambiguous.

	* Fixedup ROSETTA to handle SgDirectoryList objects as STL
	  containers.

	* Added SgDirectory IR nodes as part of initial work to support
	  whole programs to be read in and built into a single AST.
	  We will see just how large a program we can support (even if
	  any global analysis that required significant memory would be
	  likely impossible).  this would greatly simplify simple quires
	  of a whole project.  This will be implemented over a period of
	  time, first step is to add the IR node (the simple part).

	* Added Doxygen custom HTML header and footer (to specify
	  documentation as being "DRAFT").

	* Removed redundant isPartOfTransformation boolean in Sg_File_Info
	  and fixed up implementation of gneral classification mechanism
	  for IR nodes (isCompilerGenerated or isTransformation).
	  The member function get_isPartOfTransformation() and 
	  set_isPartOfTransformation() are implemented to use the newer
	  classification mechanism and are also depreicated as well.

	* Deprecated several member functions from ROSE class
	     char* ROSE::getFileName           ( SgLocatedNode* locatedNodePointer );
             int   ROSE::getLineNumber         ( SgLocatedNode* locatedNodePointer );
             int   ROSE::getColumnNumber       ( SgLocatedNode* locatedNodePointer );
             bool  ROSE::isPartOfTransformation( SgLocatedNode* locatedNodePointer );
	  These were introduce before the Sg_File_Info object existed at
	  each SgLocatedNode and when error handling was previously
	  required.  These part of SAGE III is not cleaned up and verified
	  through separate AST consistancy tests and so these function are
	  no longer required.  Removing them is part of general cleanup
	  within ROSE (and part of the support for the node classification
	  mechanism by which nodes are marked as compiler generated or
	  part of a transformation.

	* Found access to more detailed template information by setting
	  PROTOTYPE_INSTANTIATIONS_IN_IL to TRUE in EDG's host_envir.h
	  file.  We might set this later to permit greater flexability
	  over the handling of templates.  Here is where we finally see
	  template parameter data structures (or so it seems). See note.
	
	      // DQ (6/1/2005): Reset this to false since it is causing redundent declarations of template data members 
	      // in the global scope because after processing a SgTemplateDeclaration no associated SgTemplateDefinition 
	      // is defined to hold the associated data members).  Not clear that we need this, though it would permit 
	      // transformations directly on the templates themselves (instead of storage of just the template string).

	*Fixed EDG processing of command line to permit calling the
	 edg_main() function repeatedly to generate multiple ASTs as
	 part of support for AST merging.

	* Fixed use of comma operator (where SgExprListExp was previousoy
	  used).  See test2005_84.C for details.

	* Wrote prelinker using EDG mechanism (nm, etc.) but gave that up
	  since the end result was not very robust.  Then implemented a
	  better prelinker, currently not using the SQLite data base,
	  but it will after that work is finished.  The current
	  prelinker operates on a file and determins in a fixed pointer
	  iteration which classes, functions, and member functions 
	  need to be instanatiated.  This work is in ASTFixes.C at
	  present.

	* Fixed SgBaseClassList to ba a list of pointers to SgBaseClass
	  objects.  This is the last list of object to not be a list of
	  pointers to objects making the IR more uniform and without
	  this single exception. The list of SgBaseClass object is still
	  not traversed, this would be a problem since there is alread a
	  list in the the SgClassDefinition class.
	

	* Added explicit support for scope to the SgEnumDeclaration
	  Enum declarations can require name qualification
	  to support the identification of functions taking enum types.
	  Since the EnumType must then be qualified the declaration must
	  support name qualification even though it's definition does
	  not appear separately from it's declaration (by the C
	  standard). To support the name qualification we have to rely
	  on either an explicit representation of the scope, or use the
	  parent information (from get_parent() member function).
	  Because we want to use this within the name mangling during
	  construction of the global symbol table for function symbols
	  (during the EDG/Sage III translation), and the parents are
	  only properly and consistantly set after the EDG/Sage III
	  translation (see AstFixes.C), we must store the scope
	  explicitly in the AST.  Too bad we have to store it
	  explicitly, we nearly didn't need it. This fixes a bug in the
	  function symbol table construction where symbols from function
	  types are shared and functions with close but not identical
	  functions types were sharing the same symbols because the
	  generated names failed to include the qulified names in the key
	  used to hash the function symbols in the global table. This
	  lead to nearly the correct generated code, but subtle errors,
	  difficult bugs to fix until template specializations of STL
	  code failed to compile and provide tests cases (overly complex
	  test codes which were distilled into test2005_93.C and test2005_94.C

	* Added many tests to AstConsistencyTests.C

	* Added documentation about ASt properties enforced within
	  AstConsistencyTests.C
	

	* Deactivated test in ROSE/tests/roseTests directories while we 
	  sort though the effects of changes to the AST (mostly adding new
	  explicit scope pointer to many SgDeclarations and the
	  SgInitializedName IR nodes.  Commented out directories include:
	       astInliningTests 
	       astOutliningTests
	       loopProcessingTests
	       programAnalysisTests
	       programTransformationTests
	  Not clear how much these can be addressed in current work before
	  the next checkin?

	* Modified everywhere that SgNULL_FILE is used to instead call the 
	  new static member function of Sg_File_Info which generates a
	  default object appropriate for use with transformations.
	  "Sg_File_Info::generateDefaultFileInfoForTransformationNode()"
	  As a result the tests in:
	       astInliningTests 
	       loopProcessingTests
	       programAnalysisTests
	       programTransformationTests
	  now work and pass.  The tests in astOutliningTests are left
	  commented out (as Qing had left them).

        * Added use of SQLite (Radu)

        * Added support for AST Merging (Milind)

        * Added Interprocedural slicing (Milind)

        * Added more call graph support (Radu)

        * Added class hierarchy graph support (Radu)

        * And many more which are not documented here :-).

********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   README
>Locally modified   README_CHECKIN
>Locally modified   ROSE_RESEARCH_PAPERS.tar.gz
>Locally modified   configure.in
>Locally modified   ROSE_ResearchPapers/LCPC03-ParallelOptimizationOfContainers.ps
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/choose-backend-compiler.m4
>Locally modified   config/compiler-defs.m4
>Locally modified   config/create_system_headers
>Locally modified   config/generate-backend-compiler-specific-headers.m4
>Locally modified   config/gnu-3.x-headerfile-fixup.pl
>Locally modified   config/rose-g++-headerfilefixup.h
>Locally modified   developersScratchSpace/Dan/A++_notemplates.h
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Dan/README
>Locally modified   developersScratchSpace/Dan/callGraphInputTest.C
>Locally modified   developersScratchSpace/Dan/preprocessor.C
>Locally modified   developersScratchSpace/Dan/test.C
>Locally modified   developersScratchSpace/Dan/test2001_01.C
>Locally modified   developersScratchSpace/Dan/test2001_06.C
>Locally modified   developersScratchSpace/Dan/test2001_10.C
>Locally modified   developersScratchSpace/Dan/test2001_16.C
>Locally modified   developersScratchSpace/Dan/test2003_23.C
>Locally modified   developersScratchSpace/Dan/test2004_114.C
>Locally modified   developersScratchSpace/Dan/test2004_12.C
>Locally modified   developersScratchSpace/Dan/test2004_121.C
>Locally modified   developersScratchSpace/Dan/test2004_122.C
>Locally modified   developersScratchSpace/Dan/test2004_19.C
>Locally modified   developersScratchSpace/Dan/test2004_30.C
>Locally modified   developersScratchSpace/Dan/test2004_36.C
>Locally modified   developersScratchSpace/Dan/test2004_44.C
>Locally modified   developersScratchSpace/Dan/test2004_65.C
>Locally modified   developersScratchSpace/Dan/test2004_66.C
>Locally modified   developersScratchSpace/Dan/test2004_67.C
>Locally modified   developersScratchSpace/Dan/test2004_76.C
>Locally modified   developersScratchSpace/Dan/test2004_77.C
>Locally modified   developersScratchSpace/Dan/test2004_82.C
>Locally modified   developersScratchSpace/Dan/test2004_85.C
>Locally modified   developersScratchSpace/Dan/test2004_88.C
>Locally modified   developersScratchSpace/Markus/mscomp.C
>Locally modified   developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.C
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/preface.tex
>Locally modified   docs/testDoxygen/Makefile.am
>Locally modified   docs/testDoxygen/SgDeclarationStatement.docs
>Locally modified   docs/testDoxygen/SgExpression.docs
>Locally modified   docs/testDoxygen/SgFunctionDeclaration.docs
>Locally modified   docs/testDoxygen/SgInitializedName.docs
>Locally modified   docs/testDoxygen/SgNode.docs
>Locally modified   docs/testDoxygen/test.cfg.in
>Locally modified   exampleTranslators/AstCopyReplTester/astCopyReplTest.C
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/Makefile.am
>Locally modified   projects/BabelPreprocessor/Makefile.am
>Locally modified   projects/BabelPreprocessor/options.C
>Locally modified   projects/arrayOptimization/Makefile.am
>Locally modified   projects/arrayOptimization/test/Makefile.am
>Locally modified   projects/containerParallelizer/ContainerTransformer.C
>Locally modified   projects/containerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   projects/containerParallelizer/test/UserDefList.C.out.save
>Locally modified   projects/containerParallelizer/test/UserDefList2.C.out.save
>Locally modified   projects/containerParallelizer/test/UserDefList2b.C.out.save
>Locally modified   projects/containerParallelizer/test/UserDefList2c.C.out.save
>Locally modified   projects/containerParallelizer/test/UserDefList2d.C.out.save
>Locally modified   projects/containerParallelizer/test/UserDefList3.C.out.save
>Locally modified   projects/dataStructureGraphing/GenGeneration.C
>Locally modified   projects/dataStructureGraphing/Makefile.am
>Locally modified   projects/highLevelGrammars/highLevelGrammarGenerator.C
>Locally modified   proposals/New_Sage_Interface.txt
>Locally modified   proposals/StudentWork.txt
>Locally modified   proposals/TODO.txt
>Locally modified   src/Makefile.am
>Locally modified   src/rose.h
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGraphInterface.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.h
>Locally modified   src/ROSETTA/Grammar/Common.code
>Locally modified   src/ROSETTA/Grammar/Cxx_GlobalDeclarations.macro
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Symbol.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/grammarDestructorDefinitionMacros.macro
>Locally modified   src/ROSETTA/Grammar/grammarMainClassDeclatationMacros.macro
>Locally modified   src/ROSETTA/Grammar/grammarMainClassParseFunctionSourceCode.macro
>Locally modified   src/ROSETTA/Grammar/grammarMainClassSourceCodeMacros.macro
>Locally modified   src/ROSETTA/src/Makefile.am
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/node.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/symbol.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/copy_unparser.h
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_support.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/CodeGeneratedEDG.C
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/error.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/expr.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/fe_wrapup.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_def.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/lang_feat.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/mem_manage.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/preproc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/templates.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/expr.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/fe_wrapup.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/mem_manage.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/preproc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/templates.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageCommonSourceHeader.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageGlobalVar.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageMacros.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.h
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/preproc.C
>Locally modified   src/frontend/SageIII/preproc.lex
>Locally modified   src/frontend/SageIII/rose_attributes_list.h
>Locally modified   src/frontend/SageIII/sage3.h
>Locally modified   src/frontend/SageIII/sageSupport.C
>Locally modified   src/frontend/SageIII/sageSupport.h
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.C
>Locally modified   src/midend/astDiagnostics/AstConsistencyTests.h
>Locally modified   src/midend/astDiagnostics/AstDiagnostics.h
>Locally modified   src/midend/astDiagnostics/Makefile.am
>Locally modified   src/midend/astInlining/inliner.C
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/isPotentiallyModified.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astOutlining/Makefile.am
>Locally modified   src/midend/astOutlining/RoseOutliner.C
>Locally modified   src/midend/astProcessing/Ast.h
>Locally modified   src/midend/astProcessing/AstClearVisitFlags.C
>Locally modified   src/midend/astProcessing/AstClearVisitFlags.h
>Locally modified   src/midend/astProcessing/AstDOTGeneration.C
>Locally modified   src/midend/astProcessing/AstPDFGeneration.C
>Locally modified   src/midend/astProcessing/AstProcessing.C
>Locally modified   src/midend/astProcessing/Makefile.am
>Locally modified   src/midend/astProcessing/abstractcppgrammar.atg
>Locally modified   src/midend/astProcessing/sgnodec.hpp
>Locally modified   src/midend/astQuery/nameQuery.C
>Locally modified   src/midend/astQuery/nodeQuery.C
>Locally modified   src/midend/astQuery/numberQuery.C
>Locally modified   src/midend/astQuery/queryVariant.C
>Locally modified   src/midend/astRewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   src/midend/astRewriteMechanism/midLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/nodeCollection.C
>Locally modified   src/midend/astRewriteMechanism/nodeCollectionTemplates.C
>Locally modified   src/midend/astRewriteMechanism/prefixGeneration.C
>Locally modified   src/midend/astRewriteMechanism/rewrite.h
>Locally modified   src/midend/astRewriteMechanism/rewriteHighLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeShadow.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.C
>Locally modified   src/midend/programAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programTransformation/Makefile.am
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
>Locally modified   src/midend/programTransformation/finiteDifferencing/patternRewrite.C
>Locally modified   src/midend/programTransformation/partialRedundancyElimination/pre.C
>Locally modified   src/roseExtensions/Makefile.am
>Locally modified   src/roseExtensions/highLevelGrammar/Makefile.am
>Locally modified   src/roseIndependentSupport/Makefile.am
>Locally modified   src/roseIndependentSupport/visualization/README
>Locally modified   src/roseSupport/templateSupport.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/utility_functions.C
>Locally modified   src/roseSupport/utility_functions.h
>Locally modified   src/util/commandlineProcessing/commandline_processing.C
>Locally modified   src/util/commandlineProcessing/commandline_processing.h
>Locally modified   src/util/graphs/GraphInterface.h
>Locally modified   src/util/graphs/IDGraphCreate.C
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/graphs/Makefile.am
>Locally modified   src/util/graphs/SCCAnalysis.C
>Locally modified   src/util/graphs/TypedFusion.C
>Locally modified   src/util/support/DAG.C
>Locally modified   src/util/support/TreeImpl.h
>Locally modified   tests/CompileTests/Makefile.am
>Locally modified   tests/CompileTests/A++Code/A++_notemplates.h
>Locally modified   tests/CompileTests/A++Code/Makefile.am
>Locally modified   tests/CompileTests/A++Code/where.C
>Locally modified   tests/CompileTests/A++Tests/Makefile.am
>Locally modified   tests/CompileTests/C++Code/Makefile.am
>Locally modified   tests/CompileTests/C++Code/test2001_01.C
>Locally modified   tests/CompileTests/C++Code/test2001_06.C
>Locally modified   tests/CompileTests/C++Code/test2001_15.h
>Locally modified   tests/CompileTests/C++Code/test2001_16.C
>Locally modified   tests/CompileTests/C++Code/test2001_18A.h
>Locally modified   tests/CompileTests/C++Code/test2003_23.C
>Locally modified   tests/CompileTests/C++Code/test2004_12.C
>Locally modified   tests/CompileTests/C++Code/test2004_15.C
>Locally modified   tests/CompileTests/C++Code/test2004_19.C
>Locally modified   tests/CompileTests/C++Code/test2004_30.C
>Locally modified   tests/CompileTests/C++Code/test2004_36.C
>Locally modified   tests/CompileTests/C++Code/test2004_44.C
>Locally modified   tests/CompileTests/OvertureCode/Makefile.am
>Locally modified   tests/CompileTests/OvertureCode/overtureBug_01.C
>Locally modified   tests/CompilerOptionsTests/Makefile.am
>Locally modified   tests/CompilerOptionsTests/A++Code/Makefile.am
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astOutliningTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/inputProgram2.C
>Locally modified   tests/roseTests/astRewriteTests/testDeclarationPrefixGeneration.C
>Locally modified   tests/roseTests/astRewriteTests/testMidLevelInterface.C
>Locally modified   tests/roseTests/astRewriteTests/testNewRewrite.C
>Locally modified   tests/roseTests/astRewriteTests/testReplacementStatements.C
>Locally modified   tests/roseTests/astRewriteTests/testRewritePermutations.C
>Locally modified   tests/roseTests/loopProcessingTests/LoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/rose_dgemm.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_fusiontest1.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_cp0.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_split.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm_cp0.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm_cp2_bk3.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_tridvpk.C.save
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/StmtRefTest.C
>Locally modified   tests/roseTests/programAnalysisTests/TestDriver.C
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile2.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.ref
>Locally modified   tests/roseTests/programAnalysisTests/testfile4.c.du
>Locally modified   tests/roseTests/programTransformationTests/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/rose_finitediff_test1.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_finitediff_test2.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_finitediff_test3.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_pass1.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_pass2.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_pass3.C.save
>Locally modified   tests/roseTests/programTransformationTests/rose_rewrite_test1.C.save
>Locally modified   tutorial/Makefile.am
>Locally modified   tutorial/addFunctionDeclaration.C
>Locally modified   tutorial/codeCoverage.C
>Locally modified   tutorial/exampleMakefile.in
>Locally modified   tutorial/inheritedAttributeTraversal.C
>Locally modified   tutorial/inputCode_BuildCFG.C
>Locally modified   tutorial/loopOptimization.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      ROSE_ResearchPapers/ICS05BrianWhiteAndCast.pdf
+Scheduled for add      ROSE_ResearchPapers/ISOLA2004-ClassificationAndUtilizationOfAbstractionsForOptimization.ps
+Scheduled for add      ROSE_ResearchPapers/LCPC2004-OptimizationsOfObjectOrientedAbstractionsThroughClassificationOfSemantics.pdf
+Scheduled for add      config/Python-version-2.2.h
+Scheduled for add      config/rose_edg_macros_and_functions_required_for_gnu.h
+Scheduled for add      config/support-sqlite.m4
+Scheduled for add      developersScratchSpace/Dan/foo.h
+Scheduled for add      developersScratchSpace/Dan/globalAndStaticData.C
+Scheduled for add      developersScratchSpace/Dan/inputForGlobalAndStaticData.C
+Scheduled for add      developersScratchSpace/Dan/interfaceTest.C
+Scheduled for add      developersScratchSpace/Dan/memoryRequirementsOfIR.C
+Scheduled for add      developersScratchSpace/Dan/postProcessGlobalAndStaticDataFile.C
+Scheduled for add      developersScratchSpace/Dan/stringFilter.C
+Scheduled for add      developersScratchSpace/Dan/tabExpand.C
+Scheduled for add      developersScratchSpace/Dan/templateInClass.C
+Scheduled for add      developersScratchSpace/Dan/templateInClassTestCode.C
+Scheduled for add      developersScratchSpace/Dan/test2004_123.C
+Scheduled for add      developersScratchSpace/Dan/test2004_124.C
+Scheduled for add      developersScratchSpace/Dan/test2004_125.C
+Scheduled for add      developersScratchSpace/Dan/test2004_126.C
+Scheduled for add      developersScratchSpace/Dan/test2004_126.c
+Scheduled for add      developersScratchSpace/Dan/test2004_127.C
+Scheduled for add      developersScratchSpace/Dan/test2004_128.C
+Scheduled for add      developersScratchSpace/Dan/test2004_129.C
+Scheduled for add      developersScratchSpace/Dan/test2004_130.C
+Scheduled for add      developersScratchSpace/Dan/test2004_131.C
+Scheduled for add      developersScratchSpace/Dan/test2004_132.C
+Scheduled for add      developersScratchSpace/Dan/test2004_133.C
+Scheduled for add      developersScratchSpace/Dan/test2004_134.C
+Scheduled for add      developersScratchSpace/Dan/test2004_135.C
+Scheduled for add      developersScratchSpace/Dan/test2004_136.C
+Scheduled for add      developersScratchSpace/Dan/test2004_137.C
+Scheduled for add      developersScratchSpace/Dan/test2004_138.C
+Scheduled for add      developersScratchSpace/Dan/test2004_139.C
+Scheduled for add      developersScratchSpace/Dan/test2004_140.C
+Scheduled for add      developersScratchSpace/Dan/test2004_141.C
+Scheduled for add      developersScratchSpace/Dan/test2004_142.C
+Scheduled for add      developersScratchSpace/Dan/test2004_143.C
+Scheduled for add      developersScratchSpace/Dan/test2004_144.C
+Scheduled for add      developersScratchSpace/Dan/test2004_145.C
+Scheduled for add      developersScratchSpace/Dan/test2004_146.C
+Scheduled for add      developersScratchSpace/Dan/test2004_147.C
+Scheduled for add      developersScratchSpace/Dan/test2004_148.C
+Scheduled for add      developersScratchSpace/Dan/test2004_149.C
+Scheduled for add      developersScratchSpace/Dan/test2004_150.C
+Scheduled for add      developersScratchSpace/Dan/test2004_151.C
+Scheduled for add      developersScratchSpace/Dan/test2004_152.C
+Scheduled for add      developersScratchSpace/Dan/test2004_153.C
+Scheduled for add      developersScratchSpace/Dan/test2004_154.C
+Scheduled for add      developersScratchSpace/Dan/test2004_155.C
+Scheduled for add      developersScratchSpace/Dan/test2004_156.C
+Scheduled for add      developersScratchSpace/Dan/test2004_157.C
+Scheduled for add      developersScratchSpace/Dan/test2004_158.C
+Scheduled for add      developersScratchSpace/Dan/test2004_159.C
+Scheduled for add      developersScratchSpace/Dan/test2004_160.C
+Scheduled for add      developersScratchSpace/Dan/test2004_161.C
+Scheduled for add      developersScratchSpace/Dan/test2004_162.C
+Scheduled for add      developersScratchSpace/Dan/test2004_163.C
+Scheduled for add      developersScratchSpace/Dan/test2004_164.C
+Scheduled for add      developersScratchSpace/Dan/test2005_01.C
+Scheduled for add      developersScratchSpace/Dan/test2005_02.C
+Scheduled for add      developersScratchSpace/Dan/test2005_03.C
+Scheduled for add      developersScratchSpace/Dan/test2005_04.C
+Scheduled for add      developersScratchSpace/Dan/test2005_05.C
+Scheduled for add      developersScratchSpace/Dan/test2005_06.C
+Scheduled for add      developersScratchSpace/Dan/test2005_07.C
+Scheduled for add      developersScratchSpace/Dan/test2005_08.C
+Scheduled for add      developersScratchSpace/Dan/test2005_09.C
+Scheduled for add      developersScratchSpace/Dan/test2005_10.C
+Scheduled for add      developersScratchSpace/Dan/test2005_100.C
+Scheduled for add      developersScratchSpace/Dan/test2005_101.C
+Scheduled for add      developersScratchSpace/Dan/test2005_102.C
+Scheduled for add      developersScratchSpace/Dan/test2005_103.C
+Scheduled for add      developersScratchSpace/Dan/test2005_104.C
+Scheduled for add      developersScratchSpace/Dan/test2005_105.C
+Scheduled for add      developersScratchSpace/Dan/test2005_106.C
+Scheduled for add      developersScratchSpace/Dan/test2005_107.C
+Scheduled for add      developersScratchSpace/Dan/test2005_108.C
+Scheduled for add      developersScratchSpace/Dan/test2005_109.C
+Scheduled for add      developersScratchSpace/Dan/test2005_11.C
+Scheduled for add      developersScratchSpace/Dan/test2005_110.C
+Scheduled for add      developersScratchSpace/Dan/test2005_111.C
+Scheduled for add      developersScratchSpace/Dan/test2005_112.C
+Scheduled for add      developersScratchSpace/Dan/test2005_113.C
+Scheduled for add      developersScratchSpace/Dan/test2005_114.C
+Scheduled for add      developersScratchSpace/Dan/test2005_115.C
+Scheduled for add      developersScratchSpace/Dan/test2005_116.C
+Scheduled for add      developersScratchSpace/Dan/test2005_117.C
+Scheduled for add      developersScratchSpace/Dan/test2005_118.C
+Scheduled for add      developersScratchSpace/Dan/test2005_119.C
+Scheduled for add      developersScratchSpace/Dan/test2005_12.C
+Scheduled for add      developersScratchSpace/Dan/test2005_120.C
+Scheduled for add      developersScratchSpace/Dan/test2005_121.C
+Scheduled for add      developersScratchSpace/Dan/test2005_122.C
+Scheduled for add      developersScratchSpace/Dan/test2005_123.C
+Scheduled for add      developersScratchSpace/Dan/test2005_124.C
+Scheduled for add      developersScratchSpace/Dan/test2005_125.C
+Scheduled for add      developersScratchSpace/Dan/test2005_126.C
+Scheduled for add      developersScratchSpace/Dan/test2005_127.C
+Scheduled for add      developersScratchSpace/Dan/test2005_128.C
+Scheduled for add      developersScratchSpace/Dan/test2005_129.C
+Scheduled for add      developersScratchSpace/Dan/test2005_13.C
+Scheduled for add      developersScratchSpace/Dan/test2005_130.C
+Scheduled for add      developersScratchSpace/Dan/test2005_131.C
+Scheduled for add      developersScratchSpace/Dan/test2005_132.C
+Scheduled for add      developersScratchSpace/Dan/test2005_133.C
+Scheduled for add      developersScratchSpace/Dan/test2005_133.h
+Scheduled for add      developersScratchSpace/Dan/test2005_134.C
+Scheduled for add      developersScratchSpace/Dan/test2005_135.C
+Scheduled for add      developersScratchSpace/Dan/test2005_136.C
+Scheduled for add      developersScratchSpace/Dan/test2005_137.C
+Scheduled for add      developersScratchSpace/Dan/test2005_138.C
+Scheduled for add      developersScratchSpace/Dan/test2005_139.C
+Scheduled for add      developersScratchSpace/Dan/test2005_14.C
+Scheduled for add      developersScratchSpace/Dan/test2005_140.C
+Scheduled for add      developersScratchSpace/Dan/test2005_141.C
+Scheduled for add      developersScratchSpace/Dan/test2005_142.C
+Scheduled for add      developersScratchSpace/Dan/test2005_143.C
+Scheduled for add      developersScratchSpace/Dan/test2005_144.C
+Scheduled for add      developersScratchSpace/Dan/test2005_145.C
+Scheduled for add      developersScratchSpace/Dan/test2005_146.C
+Scheduled for add      developersScratchSpace/Dan/test2005_147.C
+Scheduled for add      developersScratchSpace/Dan/test2005_148.C
+Scheduled for add      developersScratchSpace/Dan/test2005_149.C
+Scheduled for add      developersScratchSpace/Dan/test2005_15.C
+Scheduled for add      developersScratchSpace/Dan/test2005_15.h
+Scheduled for add      developersScratchSpace/Dan/test2005_150.C
+Scheduled for add      developersScratchSpace/Dan/test2005_151.C
+Scheduled for add      developersScratchSpace/Dan/test2005_152.C
+Scheduled for add      developersScratchSpace/Dan/test2005_153.C
+Scheduled for add      developersScratchSpace/Dan/test2005_154.C
+Scheduled for add      developersScratchSpace/Dan/test2005_154.h
+Scheduled for add      developersScratchSpace/Dan/test2005_155.C
+Scheduled for add      developersScratchSpace/Dan/test2005_156.C
+Scheduled for add      developersScratchSpace/Dan/test2005_157.C
+Scheduled for add      developersScratchSpace/Dan/test2005_157.h
+Scheduled for add      developersScratchSpace/Dan/test2005_158.C
+Scheduled for add      developersScratchSpace/Dan/test2005_158.h
+Scheduled for add      developersScratchSpace/Dan/test2005_159.C
+Scheduled for add      developersScratchSpace/Dan/test2005_159.h
+Scheduled for add      developersScratchSpace/Dan/test2005_16.C
+Scheduled for add      developersScratchSpace/Dan/test2005_160.C
+Scheduled for add      developersScratchSpace/Dan/test2005_160.h
+Scheduled for add      developersScratchSpace/Dan/test2005_17.C
+Scheduled for add      developersScratchSpace/Dan/test2005_18.C
+Scheduled for add      developersScratchSpace/Dan/test2005_19.C
+Scheduled for add      developersScratchSpace/Dan/test2005_20.C
+Scheduled for add      developersScratchSpace/Dan/test2005_21.C
+Scheduled for add      developersScratchSpace/Dan/test2005_22.C
+Scheduled for add      developersScratchSpace/Dan/test2005_23.C
+Scheduled for add      developersScratchSpace/Dan/test2005_24.C
+Scheduled for add      developersScratchSpace/Dan/test2005_25.C
+Scheduled for add      developersScratchSpace/Dan/test2005_26.C
+Scheduled for add      developersScratchSpace/Dan/test2005_26.h
+Scheduled for add      developersScratchSpace/Dan/test2005_27.C
+Scheduled for add      developersScratchSpace/Dan/test2005_28.C
+Scheduled for add      developersScratchSpace/Dan/test2005_29.C
+Scheduled for add      developersScratchSpace/Dan/test2005_30.C
+Scheduled for add      developersScratchSpace/Dan/test2005_31.C
+Scheduled for add      developersScratchSpace/Dan/test2005_32.C
+Scheduled for add      developersScratchSpace/Dan/test2005_33.C
+Scheduled for add      developersScratchSpace/Dan/test2005_34.C
+Scheduled for add      developersScratchSpace/Dan/test2005_35.C
+Scheduled for add      developersScratchSpace/Dan/test2005_36.C
+Scheduled for add      developersScratchSpace/Dan/test2005_37.C
+Scheduled for add      developersScratchSpace/Dan/test2005_38.C
+Scheduled for add      developersScratchSpace/Dan/test2005_39.C
+Scheduled for add      developersScratchSpace/Dan/test2005_40.C
+Scheduled for add      developersScratchSpace/Dan/test2005_41.C
+Scheduled for add      developersScratchSpace/Dan/test2005_42.C
+Scheduled for add      developersScratchSpace/Dan/test2005_43.C
+Scheduled for add      developersScratchSpace/Dan/test2005_44.C
+Scheduled for add      developersScratchSpace/Dan/test2005_45.C
+Scheduled for add      developersScratchSpace/Dan/test2005_46.C
+Scheduled for add      developersScratchSpace/Dan/test2005_47.C
+Scheduled for add      developersScratchSpace/Dan/test2005_48.C
+Scheduled for add      developersScratchSpace/Dan/test2005_49.C
+Scheduled for add      developersScratchSpace/Dan/test2005_50.C
+Scheduled for add      developersScratchSpace/Dan/test2005_51.C
+Scheduled for add      developersScratchSpace/Dan/test2005_52.C
+Scheduled for add      developersScratchSpace/Dan/test2005_53.C
+Scheduled for add      developersScratchSpace/Dan/test2005_54.C
+Scheduled for add      developersScratchSpace/Dan/test2005_55.C
+Scheduled for add      developersScratchSpace/Dan/test2005_56.C
+Scheduled for add      developersScratchSpace/Dan/test2005_57.C
+Scheduled for add      developersScratchSpace/Dan/test2005_58.C
+Scheduled for add      developersScratchSpace/Dan/test2005_59.C
+Scheduled for add      developersScratchSpace/Dan/test2005_60.C
+Scheduled for add      developersScratchSpace/Dan/test2005_61.C
+Scheduled for add      developersScratchSpace/Dan/test2005_62.C
+Scheduled for add      developersScratchSpace/Dan/test2005_63.C
+Scheduled for add      developersScratchSpace/Dan/test2005_64.C
+Scheduled for add      developersScratchSpace/Dan/test2005_65.C
+Scheduled for add      developersScratchSpace/Dan/test2005_66.C
+Scheduled for add      developersScratchSpace/Dan/test2005_67.C
+Scheduled for add      developersScratchSpace/Dan/test2005_68.C
+Scheduled for add      developersScratchSpace/Dan/test2005_69.C
+Scheduled for add      developersScratchSpace/Dan/test2005_70.C
+Scheduled for add      developersScratchSpace/Dan/test2005_71.C
+Scheduled for add      developersScratchSpace/Dan/test2005_72.C
+Scheduled for add      developersScratchSpace/Dan/test2005_73.C
+Scheduled for add      developersScratchSpace/Dan/test2005_74.C
+Scheduled for add      developersScratchSpace/Dan/test2005_75.h
+Scheduled for add      developersScratchSpace/Dan/test2005_75a.C
+Scheduled for add      developersScratchSpace/Dan/test2005_75b.C
+Scheduled for add      developersScratchSpace/Dan/test2005_76.C
+Scheduled for add      developersScratchSpace/Dan/test2005_77.C
+Scheduled for add      developersScratchSpace/Dan/test2005_78.C
+Scheduled for add      developersScratchSpace/Dan/test2005_79.C
+Scheduled for add      developersScratchSpace/Dan/test2005_80.C
+Scheduled for add      developersScratchSpace/Dan/test2005_81.C
+Scheduled for add      developersScratchSpace/Dan/test2005_81.h
+Scheduled for add      developersScratchSpace/Dan/test2005_82.C
+Scheduled for add      developersScratchSpace/Dan/test2005_83.C
+Scheduled for add      developersScratchSpace/Dan/test2005_84.C
+Scheduled for add      developersScratchSpace/Dan/test2005_85.C
+Scheduled for add      developersScratchSpace/Dan/test2005_86.C
+Scheduled for add      developersScratchSpace/Dan/test2005_87.C
+Scheduled for add      developersScratchSpace/Dan/test2005_88.C
+Scheduled for add      developersScratchSpace/Dan/test2005_88.h
+Scheduled for add      developersScratchSpace/Dan/test2005_89.C
+Scheduled for add      developersScratchSpace/Dan/test2005_90.C
+Scheduled for add      developersScratchSpace/Dan/test2005_91.C
+Scheduled for add      developersScratchSpace/Dan/test2005_92.C
+Scheduled for add      developersScratchSpace/Dan/test2005_93.C
+Scheduled for add      developersScratchSpace/Dan/test2005_94.C
+Scheduled for add      developersScratchSpace/Dan/test2005_95.C
+Scheduled for add      developersScratchSpace/Dan/test2005_96.C
+Scheduled for add      developersScratchSpace/Dan/test2005_97.C
+Scheduled for add      developersScratchSpace/Dan/test2005_98.C
+Scheduled for add      developersScratchSpace/Dan/test2005_99.C
+Scheduled for add      docs/Rose/Tutorial/ASTGraphGenerator.tex
+Scheduled for add      docs/Rose/Tutorial/Makefile.am
+Scheduled for add      docs/Rose/Tutorial/addFunctionDeclaration.tex
+Scheduled for add      docs/Rose/Tutorial/addVariableDeclaration.tex
+Scheduled for add      docs/Rose/Tutorial/appendix.tex
+Scheduled for add      docs/Rose/Tutorial/buildCFG.tex
+Scheduled for add      docs/Rose/Tutorial/codeCoverage.tex
+Scheduled for add      docs/Rose/Tutorial/commandlineProcessing.tex
+Scheduled for add      docs/Rose/Tutorial/customGraphs.tex
+Scheduled for add      docs/Rose/Tutorial/dataBaseSupport.tex
+Scheduled for add      docs/Rose/Tutorial/debuggingSupport.tex
+Scheduled for add      docs/Rose/Tutorial/globalVariableHandling.tex
+Scheduled for add      docs/Rose/Tutorial/identityTranslator.tex
+Scheduled for add      docs/Rose/Tutorial/inliner.tex
+Scheduled for add      docs/Rose/Tutorial/instrumentationExample.tex
+Scheduled for add      docs/Rose/Tutorial/introduction.tex
+Scheduled for add      docs/Rose/Tutorial/loopOptimization.tex
+Scheduled for add      docs/Rose/Tutorial/loopRecognition.tex
+Scheduled for add      docs/Rose/Tutorial/outliner.tex
+Scheduled for add      docs/Rose/Tutorial/parser-docs.tex
+Scheduled for add      docs/Rose/Tutorial/queryLibraryExample.tex
+Scheduled for add      docs/Rose/Tutorial/recognitionOfAbstractions.tex
+Scheduled for add      docs/Rose/Tutorial/resolveOverloadedFunction.tex
+Scheduled for add      docs/Rose/Tutorial/sideeffect-docs.tex
+Scheduled for add      docs/Rose/Tutorial/templateParameter.tex
+Scheduled for add      docs/Rose/Tutorial/templateSupport.tex
+Scheduled for add      docs/Rose/Tutorial/traversal.tex
+Scheduled for add      docs/Rose/Tutorial/tutorial.tex.in
+Scheduled for add      docs/Rose/Tutorial/tutorialMakefile.tex
+Scheduled for add      docs/Rose/Tutorial/typeInfoFromFunctionParameters.tex
+Scheduled for add      docs/Rose/Tutorial/wrapup.tex
+Scheduled for add      docs/testDoxygen/SgAggregateInitializer.docs
+Scheduled for add      docs/testDoxygen/SgAsmStmt.docs
+Scheduled for add      docs/testDoxygen/SgAssignInitializer.docs
+Scheduled for add      docs/testDoxygen/SgBasicBlock.docs
+Scheduled for add      docs/testDoxygen/SgCaseOptionStmt.docs
+Scheduled for add      docs/testDoxygen/SgCatchOptionStmt.docs
+Scheduled for add      docs/testDoxygen/SgCatchStatementSeq.docs
+Scheduled for add      docs/testDoxygen/SgClassDefinition.docs
+Scheduled for add      docs/testDoxygen/SgClassNameRefExp.docs
+Scheduled for add      docs/testDoxygen/SgClinkageStartStatement.docs
+Scheduled for add      docs/testDoxygen/SgConditionalExp.docs
+Scheduled for add      docs/testDoxygen/SgConstructorInitializer.docs
+Scheduled for add      docs/testDoxygen/SgContinueStmt.docs
+Scheduled for add      docs/testDoxygen/SgCtorInitializerList.docs
+Scheduled for add      docs/testDoxygen/SgDefaultOptionStmt.docs
+Scheduled for add      docs/testDoxygen/SgDeleteExp.docs
+Scheduled for add      docs/testDoxygen/SgDirectory.docs
+Scheduled for add      docs/testDoxygen/SgDoWhileStmt.docs
+Scheduled for add      docs/testDoxygen/SgEnumDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgExprListExp.docs
+Scheduled for add      docs/testDoxygen/SgExprStatement.docs
+Scheduled for add      docs/testDoxygen/SgFile.docs
+Scheduled for add      docs/testDoxygen/SgFileInfo.docs
+Scheduled for add      docs/testDoxygen/SgForInitStatement.docs
+Scheduled for add      docs/testDoxygen/SgForStatement.docs
+Scheduled for add      docs/testDoxygen/SgFunctionCallExp.docs
+Scheduled for add      docs/testDoxygen/SgFunctionDefinition.docs
+Scheduled for add      docs/testDoxygen/SgFunctionParameterList.docs
+Scheduled for add      docs/testDoxygen/SgFunctionRefExp.docs
+Scheduled for add      docs/testDoxygen/SgFunctionTypeTable.docs
+Scheduled for add      docs/testDoxygen/SgGlobal.docs
+Scheduled for add      docs/testDoxygen/SgGotoStatement.docs
+Scheduled for add      docs/testDoxygen/SgIfStmt.docs
+Scheduled for add      docs/testDoxygen/SgInitializer.docs
+Scheduled for add      docs/testDoxygen/SgLabelStatement.docs
+Scheduled for add      docs/testDoxygen/SgMemberFunctionDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgMemberFunctionRefExp.docs
+Scheduled for add      docs/testDoxygen/SgModifier.docs
+Scheduled for add      docs/testDoxygen/SgModifierNodes.docs
+Scheduled for add      docs/testDoxygen/SgNamespaceAliasDeclarationStatement.docs
+Scheduled for add      docs/testDoxygen/SgNamespaceDeclarationStatement.docs
+Scheduled for add      docs/testDoxygen/SgNamespaceDefinitionStatement.docs
+Scheduled for add      docs/testDoxygen/SgNewExp.docs
+Scheduled for add      docs/testDoxygen/SgPragmaDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgProject.docs
+Scheduled for add      docs/testDoxygen/SgRefExp.docs
+Scheduled for add      docs/testDoxygen/SgReturnStmt.docs
+Scheduled for add      docs/testDoxygen/SgScopeStatement.docs
+Scheduled for add      docs/testDoxygen/SgSizeOfOp.docs
+Scheduled for add      docs/testDoxygen/SgSpawnStmt.docs
+Scheduled for add      docs/testDoxygen/SgSupport.docs
+Scheduled for add      docs/testDoxygen/SgSwitchStatement.docs
+Scheduled for add      docs/testDoxygen/SgTemplateArgument.docs
+Scheduled for add      docs/testDoxygen/SgTemplateDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgTemplateInstantiationDecl.docs
+Scheduled for add      docs/testDoxygen/SgTemplateInstantiationDefn.docs
+Scheduled for add      docs/testDoxygen/SgTemplateInstantiationDirectiveStatement.docs
+Scheduled for add      docs/testDoxygen/SgTemplateInstantiationFunctionDecl.docs
+Scheduled for add      docs/testDoxygen/SgTemplateInstantiationMemberFunctionDecl.docs
+Scheduled for add      docs/testDoxygen/SgThisExp.docs
+Scheduled for add      docs/testDoxygen/SgTryStmt.docs
+Scheduled for add      docs/testDoxygen/SgType.docs
+Scheduled for add      docs/testDoxygen/SgTypedefDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgUsingDeclarationStatement.docs
+Scheduled for add      docs/testDoxygen/SgUsingDirectiveStatement.docs
+Scheduled for add      docs/testDoxygen/SgVariableDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgVariableDefinition.docs
+Scheduled for add      docs/testDoxygen/SgVariableSymbol.docs
+Scheduled for add      docs/testDoxygen/SgWhileStmt.docs
+Scheduled for add      docs/testDoxygen/ideas.txt
+Scheduled for add      projects/RoseStyleGuide.txt
+Scheduled for add      proposals/listeningFrameworks.txt
+Scheduled for add      proposals/namespaceSupport.txt
+Scheduled for add      scripts/addCopyWrite.pl
+Scheduled for add      scripts/dot2pdf
+Scheduled for add      scripts/recursiveTabExpand
+Scheduled for add      scripts/updateNames.pl
+Scheduled for add      scripts/variant2variantT.py
+Scheduled for add      scripts/variant2variantTDocumentation.txt
+Scheduled for add      src/frontend/SageIII/sage.docs
+Scheduled for add      src/frontend/SageIII/sageInterface.C
+Scheduled for add      src/frontend/SageIII/sageInterface.h
+Scheduled for add      src/frontend/SageIII/astFixup/AstFixup.C
+Scheduled for add      src/frontend/SageIII/astFixup/AstFixup.h
+Scheduled for add      src/frontend/SageIII/astFixup/Makefile.am
+Scheduled for add      src/frontend/SageIII/astFixup/fixupDeclarations.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupFunctionDefinitions.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupFunctionDefinitions.h
+Scheduled for add      src/frontend/SageIII/astFixup/fixupInClassDataInitialization.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupInClassDataInitialization.h
+Scheduled for add      src/frontend/SageIII/astFixup/fixupStorageAccessOfForwardTemplateDeclarations.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupStorageAccessOfForwardTemplateDeclarations.h
+Scheduled for add      src/frontend/SageIII/astFixup/fixupTemplateDeclarations.h
+Scheduled for add      src/frontend/SageIII/astFixup/fixupforGnuBackendCompiler.C
+Scheduled for add      src/frontend/SageIII/astFixup/fixupforGnuBackendCompiler.h
+Scheduled for add      src/frontend/SageIII/astFixup/removeInitializedNamePtr.C
+Scheduled for add      src/frontend/SageIII/astFixup/removeInitializedNamePtr.h
+Scheduled for add      src/frontend/SageIII/astMerge/AstCleanSymbolTables.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstDelinkNamespaces.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstFixParentTraversal.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstFixParentTraversal.h
+Scheduled for add      src/frontend/SageIII/astMerge/AstMarkDuplicates.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMarkNamespaces.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMerge.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMerge.h
+Scheduled for add      src/frontend/SageIII/astMerge/AstMergeDeclarationTraversal.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMergeReferenceTraversal.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMergeScopeTraversal.C
+Scheduled for add      src/frontend/SageIII/astMerge/AstMergeTraversals.h
+Scheduled for add      src/frontend/SageIII/astMerge/Makefile.am
+Scheduled for add      src/frontend/SageIII/astMerge/MergeUtils.C
+Scheduled for add      src/frontend/SageIII/astMerge/MergeUtils.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/Makefile.am
+Scheduled for add      src/frontend/SageIII/astPostProcessing/TODO.txt
+Scheduled for add      src/frontend/SageIII/astPostProcessing/astPostProcessing.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/astPostProcessing.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/checkIsModifiedFlag.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/checkIsModifiedFlag.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupDeclarations.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupDeclarations.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupDefiningAndNondefiningDeclarations.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupSymbolTables.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupSymbolTables.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTemplateInstantiations.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/fixupTemplateInstantiations.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/initializeExplicitScopeData.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markCompilerGenerated.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markCompilerGenerated.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markForOutputInCodeGeneration.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markForOutputInCodeGeneration.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markOverloadedTemplateInstantiations.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markOverloadedTemplateInstantiations.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTemplateInstantiationsForOutput.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTemplateSpecializationsForOutput.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTemplateSpecializationsForOutput.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTransformationsForOutput.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/markTransformationsForOutput.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/processTemplateHandlingOptions.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/processTemplateHandlingOptions.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/resetParentPointers.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/resetParentPointers.h
+Scheduled for add      src/frontend/SageIII/astPostProcessing/resetTemplateNames.C
+Scheduled for add      src/frontend/SageIII/astPostProcessing/resetTemplateNames.h
+Scheduled for add      src/midend/astDiagnostics/AstPerformance.C
+Scheduled for add      src/midend/astDiagnostics/AstPerformance.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/CallGraph.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/CallGraph.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/ClassHierarchyGraph.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/Makefile.am
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/Callgraph.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/Callgraph.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/Classhierarchy.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/Classhierarchy.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/README
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysisMySQL/callgraph_example.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/ControlFlowGraph.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/ControlFlowGraph.h
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominanceFrontier.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominanceFrontier.h
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominatorTree.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/DominatorTree.h
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/Makefile.am
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/SimpleDirectedGraph.h
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/main.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/test.C
+Scheduled for add      src/midend/programAnalysis/dominatorTreesAndDominanceFrontiers/test1.C
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/CheckWhichAreMarked.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/FindStatements.cpp
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/FindStatements.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/KeepAttribute.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/Makefile.am
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/MarkingNodes.cpp
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/MarkingNodes.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/README
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/RemovalOfNodes.cpp
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/RemovalOfNodes.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/Slicing.cpp
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/Slicing.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/SlicingCriterion.cpp
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/SlicingCriterion.h
+Scheduled for add      src/midend/programAnalysis/proceduralSlicing/SlicingInfo.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/ControlDependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/CreateSlice.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/CreateSlice.h
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/DataDependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/DependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/DependenceGraph.h
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/Makefile.am
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/MergedDependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/ProgramDependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/SlicingInfo.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/SlicingInfo.h
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/SystemDependenceGraph.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/main.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/main2.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/test.C
+Scheduled for add      src/midend/programAnalysis/staticProgramSlicing/testDependenceGraph.C
+Scheduled for add      src/midend/programTransformation/functionCallNormalization/FunctionNormalization.C
+Scheduled for add      src/midend/programTransformation/functionCallNormalization/FunctionNormalization.h
+Scheduled for add      src/midend/programTransformation/functionCallNormalization/Makefile.am
+Scheduled for add      src/roseExtensions/SQLiteConnection/ColData.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/Connection.C
+Scheduled for add      src/roseExtensions/SQLiteConnection/Connection.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/GlobalDatabaseConnection.C
+Scheduled for add      src/roseExtensions/SQLiteConnection/GlobalDatabaseConnection.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/Makefile.am
+Scheduled for add      src/roseExtensions/SQLiteConnection/Query.C
+Scheduled for add      src/roseExtensions/SQLiteConnection/Query.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/README
+Scheduled for add      src/roseExtensions/SQLiteConnection/Result.C
+Scheduled for add      src/roseExtensions/SQLiteConnection/Result.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/Row.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/dbheaders.h
+Scheduled for add      src/roseExtensions/SQLiteConnection/sqlite3.h
+Scheduled for add      src/roseExtensions/databaseConnection/GlobalDatabaseConnection.C
+Scheduled for add      src/roseIndependentSupport/dot2gml/Makefile.am
+Scheduled for add      src/roseIndependentSupport/dot2gml/README
+Scheduled for add      src/roseIndependentSupport/dot2gml/main.C
+Scheduled for add      src/roseIndependentSupport/dot2gml/parseDot.lex
+Scheduled for add      src/roseIndependentSupport/dot2gml/parseDot.y
+Scheduled for add      src/roseIndependentSupport/dot2gml/parse_header.h
+Scheduled for add      tests/CompileTests/C++Code/foo.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_09.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_12.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_14.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_22.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_24.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_25.h
+Scheduled for add      tests/CompileTests/C++Code/test2004_100.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_101.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_102.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_103.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_104.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_105.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_106.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_107.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_108.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_109.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_110.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_111.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_112.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_113.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_114.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_115.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_116.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_117.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_118.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_119.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_120.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_121.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_122.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_123.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_124.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_125.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_126.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_127.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_128.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_129.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_130.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_131.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_132.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_133.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_134.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_135.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_136.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_137.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_138.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_139.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_140.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_141.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_142.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_143.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_144.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_145.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_146.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_147.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_148.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_149.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_150.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_151.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_152.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_153.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_154.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_155.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_156.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_157.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_158.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_159.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_160.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_161.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_162.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_163.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_164.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_21.c
+Scheduled for add      tests/CompileTests/C++Code/test2004_46.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_47.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_48.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_49.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_50.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_51.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_52.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_53.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_54.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_55.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_56.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_57.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_58.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_59.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_60.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_61.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_62.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_63.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_64.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_65.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_66.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_67.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_68.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_69.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_70.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_71.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_72.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_73.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_74.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_75.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_76.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_77.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_78.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_79.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_80.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_81.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_82.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_83.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_84.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_85.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_86.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_87.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_88.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_89.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_90.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_91.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_92.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_93.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_94.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_95.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_96.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_97.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_98.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_99.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_01.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_02.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_03.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_04.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_05.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_06.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_07.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_08.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_09.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_10.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_100.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_101.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_102.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_103.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_104.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_105.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_106.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_107.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_108.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_109.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_11.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_110.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_111.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_112.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_113.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_114.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_115.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_116.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_117.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_118.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_119.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_12.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_120.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_121.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_122.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_123.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_124.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_125.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_126.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_127.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_128.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_129.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_13.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_130.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_131.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_132.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_133.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_133.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_134.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_135.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_136.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_137.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_138.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_139.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_14.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_140.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_141.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_142.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_143.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_144.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_145.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_146.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_147.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_148.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_149.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_15.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_15.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_150.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_151.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_152.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_153.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_154.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_154.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_155.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_156.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_157.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_157.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_158.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_158.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_159.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_159.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_16.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_160.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_160.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_17.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_18.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_19.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_20.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_21.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_22.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_23.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_24.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_25.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_26.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_26.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_27.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_28.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_29.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_30.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_31.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_32.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_33.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_34.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_35.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_36.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_37.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_38.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_39.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_40.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_41.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_42.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_43.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_44.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_45.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_46.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_47.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_48.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_49.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_50.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_51.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_52.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_53.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_54.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_55.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_56.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_57.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_58.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_59.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_60.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_61.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_62.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_63.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_64.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_65.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_66.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_67.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_68.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_69.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_70.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_71.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_72.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_73.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_74.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_75.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_75a.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_75b.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_76.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_77.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_78.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_79.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_80.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_81.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_81.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_82.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_83.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_84.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_85.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_86.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_87.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_88.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_88.h
+Scheduled for add      tests/CompileTests/C++Code/test2005_89.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_90.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_91.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_92.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_93.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_94.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_95.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_96.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_97.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_98.C
+Scheduled for add      tests/CompileTests/C++Code/test2005_99.C
+Scheduled for add      tests/roseTests/astMergeTests/Makefile.am
+Scheduled for add      tests/roseTests/astMergeTests/mangleTest.C
+Scheduled for add      tests/roseTests/astMergeTests/mangleTest.h
+Scheduled for add      tests/roseTests/astMergeTests/mangleThree.C
+Scheduled for add      tests/roseTests/astMergeTests/mangleTwo.C
+Scheduled for add      tests/roseTests/astMergeTests/mangleTwo.h
+Scheduled for add      tests/roseTests/astMergeTests/testMerge.C
+Scheduled for add      tests/roseTests/astPerformanceTests/Makefile.am
+Scheduled for add      tests/roseTests/astPerformanceTests/testPerformance.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_dgemm.C.save.original
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_fusiontest1.C.save.original
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_lufac.C.save.original
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_mm.C.save.original
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save.original
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_tridvpk.C.save.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c.cfg.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c.ref.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.cfg.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.du.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.ref.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.cfg.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.du.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.ref.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile4.c.du.original
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/Makefile.am
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test1.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test2.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test3.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test4.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test5.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test6.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/test7.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testCallGraphAnalysis/testCallGraph.C
+Scheduled for add      tests/roseTests/programTransformationTests/functionNormalizationTest1.C
+Scheduled for add      tests/roseTests/programTransformationTests/functionNormalizationTest2.C
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test1.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test2.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test3.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass1.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass2.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass3.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/rose_rewrite_test1.C.save.original
+Scheduled for add      tests/roseTests/programTransformationTests/testFunctionNormalization.C
+Scheduled for add      tutorial/CharmSupport.C
+Scheduled for add      tutorial/callGraphAnalysis.C
+Scheduled for add      tutorial/coverageCodeFromShmuel.c
+Scheduled for add      tutorial/dataBaseUsage.C
+Scheduled for add      tutorial/globalAndStaticData.C
+Scheduled for add      tutorial/inputCode_2.C
+Scheduled for add      tutorial/inputCode_CallGraphAnalysis.C
+Scheduled for add      tutorial/inputCode_ExampleCharmSupport.C
+Scheduled for add      tutorial/inputCode_ExampleCodeCoverage.C
+Scheduled for add      tutorial/inputCode_dataBaseExample1.C
+Scheduled for add      tutorial/inputCode_templateExample1.C
+Scheduled for add      tutorial/inputCode_templateExample2.C
+Scheduled for add      tutorial/inputForGlobalAndStaticData.C
+Scheduled for add      tutorial/postProcessGlobalAndStaticDataFile.C
********* Files Scheduled to be removed *********
-Scheduled for removal  docs/Rose/Tutorial/tutorial.tex
-Scheduled for removal  docs/testDoxygen/Makefile.in
********* WARNINGS *********
********* ERRORS *********

	
2005-9/3 Dan Quinlan 0.8.5a

	This is the first phase of a two phase checkin to update to
	reflect the latest work to handle the compilation and linking 
	of Kull (the lab's largest and most complex C++ application).
	
	This version added Gabriel de Figueiredo Coutinho's QRose GUI
	interface to ROSE. Before we release ROSE formally we need to 
	likely disconnect QRose from ROSE because of license issues
	relative to the QT GUI interface library.  Gabriel will be
	updating his QRose library over time and might maintain it 
	seperately.  It is a great piece of work and is currently
	folded into ROSE so that we can easily use it and deomonstarted 
	it within the tutorial.

	This version also adds the work from Andreas, both the data
	structure mapping and the newer implementation of Nil's 
	dotGL viewer which Andreas and Nil's figured out how to install
	using newer libraries.

********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/support-visualization.m4
>Locally modified   docs/testDoxygen/Makefile.in
>Locally modified   exampleTranslators/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/arrayOptimization/test/rose_interp1.C.save
>Locally modified   projects/arrayOptimization/test/rose_redBlack1.C.save
>Locally modified   projects/arrayOptimization/test/rose_redBlack1_split.C.save
>Locally modified   scripts/README
>Locally modified   src/Makefile.am
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/roseIndependentSupport/Makefile.am
>Locally modified   tests/CompilerOptionsTests/A++Code/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_cp0.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac_split.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm_cp0.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm_cp2_bk3.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_tridvpk.C.save
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile3.c.ref
>Locally modified   tutorial/Makefile.am
>Locally modified   tutorial/exampleMakefile.in
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/Makefile.am
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/test_01.cpp
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/attributes/Makefile.am
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/attributes/attrib.cpp
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/layout/Makefile.am
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/layout/layout.cpp
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/query/Makefile.am
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/query/query.cpp
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/slicing/Makefile.am
+Scheduled for add      exampleTranslators/graphicalUserInterfaceExamples/slicing/slicing.cpp
+Scheduled for add      projects/dataStructureGraphing/handle.C
+Scheduled for add      projects/dataStructureGraphing/helpMethods.C
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/README
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/TODO
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/TEST.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/QRCodeBox.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/QRCodeBox.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/QRCodeBox.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/QRUnparser.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/QRUnparser.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/cindent.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/cindent.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/cpp_colorizer.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/cpp_colorizer.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/dlldefs.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/levelwidget.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/levelwidget.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/levelwidget.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/linenumberwidget.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/linenumberwidget.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/linenumberwidget.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/markerwidget.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/markerwidget.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/markerwidget.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/paragdata.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/paragdata.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/parenmatcher.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/parenmatcher.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qeditor.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qeditor.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qeditor.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qeditor_indenter.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qeditor_indenter.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qsourcecolorizer.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/qsourcecolorizer.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/simple_indent.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/simple_indent.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRCodeBox/yyindent.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRAstInfo.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRAstInfo.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRAttribute.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRAttribute.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCallbac.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCallback.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCallback.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCallback.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCoords.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRCoords.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRGroup.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRGroup.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRGroup.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRGui.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRGui.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRLayout.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRLayout.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRLayout.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRMacros.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRPixmap.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRPixmap.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRToolBar.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRToolBar.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRToolBar.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRoseGroup.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/QRoseGroup.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/qrose.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/class_decl.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/class_decl2.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/empty.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/func_decl.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/func_decl.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/func_defn.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/lc_repeat.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/method_npublic_decl.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/method_npublic_defn.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/method_public_decl.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/method_public_defn.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/project.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/source_c.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/stock_effects-preview.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/stock_flip.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/stock_macro-stop-after-procedure-16.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/typedf.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/var.png
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRGui/icons22/var.xpm
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryBox.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryBox.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryBox.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryCollection.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryCollection.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryDomain.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryDomain.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryOp.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryOp.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryRange.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/QRQueryRange.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/querybox.ui
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/querybox.uic
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRQueryBox/querybox.uih
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRTree/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRTree/QRTree.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRTree/QRTreeBox.cpp
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRTree/QRTreeBox.h
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRTree/QRTreeBox.moc
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRoseLib/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphicalUserInterface/src/QRoseLib/qroselib.cpp
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********


2005-7/6 Tom Epperly 0.8.4c
	Update C/C++ to SIDL (Babel translator) to be more correct.
	Cleanup some of the string utility functions.
	Make enum's behave like named types in
	TransformationSupport::getTypeName.
********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.5
dot version gviz 1.7.3b (Mon Feb 26 14:10:22 EST 2001)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   projects/BabelPreprocessor/Makefile.am
>Locally modified   projects/BabelPreprocessor/babelPreprocessor.C
>Locally modified   projects/BabelPreprocessor/babelTest_2.C
>Locally modified   projects/BabelPreprocessor/babelTransformation.C
>Locally modified   projects/BabelPreprocessor/babelTransformation.h
>Locally modified   projects/BabelPreprocessor/sidlFunction.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/utility_functions.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      projects/BabelPreprocessor/caselessCompare.C
+Scheduled for add      projects/BabelPreprocessor/caselessCompare.h
+Scheduled for add      projects/BabelPreprocessor/findMethodCalls.C
+Scheduled for add      projects/BabelPreprocessor/findMethodCalls.h
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

2005-6/14 Qing Yi 0.8.4b
        Added declarations so that all codes I wrote can be compiled using
        g++3.4.0
********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.5
dot version gviz 1.7.3b (Mon Feb 26 14:10:22 EST 2001)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.h
>Locally modified   src/3rdPartyLibraries/MSTL/TreeTraversal.h
>Locally modified   src/midend/astRewriteMechanism/midLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/rewrite.h
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.h
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicBound.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraph.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphTransform.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoUpdate.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceRegistry.h
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/util/graphs/BaseGraphCreate.h
>Locally modified   src/util/graphs/GraphIO.h
>Locally modified   src/util/graphs/GraphInterface.h
>Locally modified   src/util/graphs/GraphTemplate.h
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/support/BitVectorRepr.h
>Locally modified   src/util/support/DAG.h
>Locally modified   src/util/support/DoublyLinkedList.h
>Locally modified   src/util/support/IteratorTmpl.h
>Locally modified   src/util/support/LatticeElemList.h
>Locally modified   src/util/support/Matrix.h
>Locally modified   src/util/support/PtrMap.h
>Locally modified   src/util/support/SinglyLinkedList.h
>Locally modified   src/util/support/TreeImpl.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
!NEEDS MERGE        src/frontend/SageIII/preproc.C
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

2005-6/7  Qing Yi 0.8.4a
        . For midend/loopProcessing directory
            * Added array copy capabilities
            * Reorganized files
            * Modified dependence analysis implementation
            * Added testfiles
        . For util/graphs directory
           * Reorginized files 
           * Changed string output of graphs
        . For midend/astUtil/annotation
           * Modified annotations for expressions and functions
        . For midend/astUtil/astSupport
           * Modified (fixed bugs) in StmtInfoCollect.C
           * Added simple loop-finding support
        . For midend/astUtil/symbolicVal
           * Reorgaized functions
           * Added functionalities

********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.5
dot version gviz 1.7.3b (Mon Feb 26 14:10:22 EST 2001)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   developersScratchSpace/Dan/callGraph.C
>Locally modified   developersScratchSpace/Dan/testDOTBug.C
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/arrayOptimization/ArrayAnnot.C
>Locally modified   projects/arrayOptimization/ArrayAnnot.h
>Locally modified   projects/arrayOptimization/ArrayInterface.C
>Locally modified   projects/arrayOptimization/ArrayInterface.h
>Locally modified   projects/arrayOptimization/ArrayProcessor.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.h
>Locally modified   projects/arrayOptimization/test/Index.annot
>Locally modified   projects/arrayOptimization/test/Makefile.am
>Locally modified   projects/arrayOptimization/test/TestDriver
>Locally modified   projects/arrayOptimization/test/floatArray.annot
>Locally modified   projects/arrayOptimization/test/rose_interp1.C.save
>Locally modified   projects/arrayOptimization/test/rose_redBlack1.C.save
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.h
>Locally modified   projects/simpleCallGraphAnalysis/callGraph.C
>Locally modified   src/Makefile.am
>Locally modified   src/backend/unparser/copy_unparser.C
>Locally modified   src/backend/unparser/copy_unparser.h
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.C
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.h
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.h
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.C
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.h
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/OperatorDescriptors.C
>Locally modified   src/midend/astUtil/annotation/OperatorDescriptors.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.C
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.h
>Locally modified   src/midend/astUtil/astInterface/Makefile.am
>Locally modified   src/midend/astUtil/astSupport/Makefile.am
>Locally modified   src/midend/astUtil/astSupport/ProcessAstTree.C
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.C
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.h
>Locally modified   src/midend/astUtil/symbolicVal/Makefile.am
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicBound.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicExpr.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicExpr.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicFind.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicMultiply.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicOperator.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicPlus.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicSelect.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicUnwrapCond.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.h
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.C
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.h
>Locally modified   src/midend/loopProcessing/Makefile.am
>Locally modified   src/midend/loopProcessing/computation/LoopTree.C
>Locally modified   src/midend/loopProcessing/computation/LoopTree.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeBuild.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeObserver.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.h
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/DepGraph.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.C
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphTransform.h
>Locally modified   src/midend/loopProcessing/depGraph/LoopAnalysis.C
>Locally modified   src/midend/loopProcessing/depGraph/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.C
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoSet.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoSet.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoUpdate.h
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.C
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.h
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/depInfo/ReuseAnalysis.C
>Locally modified   src/midend/loopProcessing/depInfo/ReuseAnalysis.h
>Locally modified   src/midend/loopProcessing/depInfo/StmtDepAnal.C
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.C
>Locally modified   src/midend/loopProcessing/driver/FusionAnal.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.h
>Locally modified   src/midend/loopProcessing/driver/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/TransformComputation.C
>Locally modified   src/midend/loopProcessing/driver/TypedFusionImpl.C
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceRegistry.h
>Locally modified   src/midend/loopProcessing/slicing/DependenceHoisting.C
>Locally modified   src/midend/programAnalysis/CFG/CFG.h
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.h
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.C>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.h>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.h
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.h
>Locally modified   src/util/graphs/BaseGraphCreate.h
>Locally modified   src/util/graphs/DGBaseGraphImpl.h
>Locally modified   src/util/graphs/GraphDotOutput.h
>Locally modified   src/util/graphs/GraphGroup.h
>Locally modified   src/util/graphs/GraphInterface.h
>Locally modified   src/util/graphs/GraphScope.h
>Locally modified   src/util/graphs/GraphTemplate.h
>Locally modified   src/util/graphs/GraphUpdate.h
>Locally modified   src/util/graphs/IDGraphCreate.C
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/graphs/Makefile.am
>Locally modified   src/util/graphs/SCCAnalysis.C
>Locally modified   src/util/graphs/SCCAnalysis.h
>Locally modified   src/util/graphs/TransAnalysis.C
>Locally modified   src/util/graphs/TypedFusion.C
>Locally modified   src/util/support/BitVectorRepr.h
>Locally modified   src/util/support/CommandOptions.C
>Locally modified   src/util/support/CommandOptions.h
>Locally modified   src/util/support/DAG.C
>Locally modified   src/util/support/DAG.h
>Locally modified   src/util/support/DirectedGraph.h
>Locally modified   src/util/support/DoublyLinkedList.h
>Locally modified   src/util/support/FunctionObject.h
>Locally modified   src/util/support/IteratorCompound.h
>Locally modified   src/util/support/IteratorTmpl.h
>Locally modified   src/util/support/Makefile.am
>Locally modified   src/util/support/Matrix.h
>Locally modified   src/util/support/ObserveObject.h
>Locally modified   src/util/support/PtrSet.h
>Locally modified   src/util/support/SinglyLinkedList.h
>Locally modified   src/util/support/union_find.h
>Locally modified   tests/roseTests/loopProcessingTests/LoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/lufac.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_dgemm.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save
>Locally modified   tests/roseTests/loopProcessingTests/rose_tridvpk.C.save
>Locally modified   tests/roseTests/programAnalysisTests/CFGTest.C
>Locally modified   tests/roseTests/programAnalysisTests/DataFlowTest.C
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/StmtRefTest.C
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.cfg
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.du
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.ref
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
!NEEDS MERGE        src/frontend/SageIII/preproc.C
********* Files Scheduled to be added *********
+Scheduled for add      projects/arrayOptimization/test/rose_redBlack1_split.C.save
+Scheduled for add      src/midend/astUtil/astSupport/LoopInfoInterface.h
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicBound.h
+Scheduled for add      src/midend/loopProcessing/computation/DepCompTransform.C
+Scheduled for add      src/midend/loopProcessing/computation/DepCompTransform.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeLocality.h
+Scheduled for add      src/midend/loopProcessing/depInfo/StmtDepAnal.h
+Scheduled for add      src/midend/loopProcessing/driver/CopyArrayAnal.C
+Scheduled for add      src/midend/loopProcessing/driver/CopyArrayAnal.h
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/BreakupStmt.C
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/BreakupStmt.h
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/LoopUnroll.C+Scheduled for add      src/midend/loopProcessing/prepostTransformation/LoopUnroll.h+Scheduled for add      src/midend/loopProcessing/prepostTransformation/Makefile.am
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/PrePostTransformation.h
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/PrivatizeScalar.C
+Scheduled for add      src/midend/loopProcessing/prepostTransformation/PrivatizeScalar.h
+Scheduled for add      src/util/graphs/GraphIO.h
+Scheduled for add      src/util/graphs/GraphUtils.h
+Scheduled for add      tests/roseTests/loopProcessingTests/TestDriver
+Scheduled for add      tests/roseTests/loopProcessingTests/funcs.annot
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_lufac_cp0.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_lufac_split.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_mm_cp0.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_mm_cp2_bk3.C.save
+Scheduled for add      tests/roseTests/programAnalysisTests/TestDriver
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.cfg
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.du
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile2.c.ref
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.cfg
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.du
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile3.c.ref
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile4.c
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile4.c.du
********* Files Scheduled to be removed *********
-Scheduled for removal  src/midend/astUtil/astInterface/CheckSymbolTable.C
-Scheduled for removal  src/midend/astUtil/astInterface/CheckSymbolTable.h
-Scheduled for removal  src/midend/loopProcessing/computation/LoopInfo.h
-Scheduled for removal  src/midend/loopProcessing/depGraph/DepGraphTransform.C
-Scheduled for removal  src/midend/loopProcessing/depInfo/DepInfoAnalImpl.C
-Scheduled for removal  src/midend/loopProcessing/driver/TransformAstTree.C
-Scheduled for removal  src/util/graphs/BaseGraphTemp.h
-Scheduled for removal  src/util/graphs/DGBaseGraphTemp.h
-Scheduled for removal  src/util/graphs/Dump.C
-Scheduled for removal  src/util/graphs/IDGraphCreateTemp.h
-Scheduled for removal  src/util/support/Adaptors.h
-Scheduled for removal  tests/roseTests/loopProcessingTests/TestLoopProcessor.C
********* WARNINGS *********
********* ERRORS *********


2005-4/26  Dan Quinlan 0.8.3b
	* Fixed copy permissions of libraries used for copying EDG
	  binaries.
	
	* Fixed version number to 0.8.3b since I fixed additional details
	  regarding the build of ROSE distibutions using EDG binaries.
	  Version 0.8.3a was sent to someone and this version updates
	  that version.
	
2005-4/25  Dan Quinlan 0.8.3a
	* Added support for use of binaries of EDG in place of source code
	  when building distributions.  The process is to from a
	  development version of ROSE (what you check out from CVS):
	     1) run "build" as usual
	     2) configure with the option "--with-edg_source_code=true" in
	        addition to any options that you specify.
	     3) run make, make check, etc.
	     4) before building a distribution, if you want to build the
	        distribution to use EDG binaries then rerun configure
	        without the "--with-edg_source_code=true" option (or with it set
	        to any other value but "true").  Then run "make dist"
	        or "make distcheck".  If you want to use the EDG source
	        code then don't rerun configure.
	   Note also that the make distcheck will now use the 
	   DISTCHECK_CONFIGURE_FLAGS variable to communicat the value of 
	   $with_edg_source_code when distcheck runs configure.  So if
	   you build a distribution with binaries using distcheck, it will
	   be tested as a distribution using the binaries.  And
	   alternatively, if you build a distribution using EDG source
	   code (with the distcheck rule) it will be tested as a
	   distribution using the EDG source code (not binaries).
	   The binaries are only stored in the distribution if
	   they are specified, this makes the distribution quite large
	   (approx 40 meg).

	   Note that the default behavior now is to exclude the EDG source
	   from distributions and that as a result a configure option
	   "--with-edg_source_code=true" is required to build EDG when
	   checked out from the CVS repository.  This ONLY effects
	   developers, but there are a few people using ROSE who have
	   access to the CVS and use ROSE the same as those doing
	   development work on ROSE.  Those with a distribution that does
	   not have the EDG source code (and uses the binaries that are
	   contained in the distribution) will not see anything
	   different).

	* Added error checking and help messages to detect incorrect use
	  of "--with-edg_source_code=true" configure option.

	* Added Andreas Saebjornsen's work on data structure
	  vizualization, the alternative EDG source-to-source build, with
	  no SageIII added (instrumented by Andreas's to support
	  vizualization of the EDG AST, which is useful for debugging).
	
	* Fixed the latest work required to use dotgl, the tool for
	  vizualizing dot graphs the size of a football field (really
	  really large ones).  This is work by Nils Thuerey.

	* Added notes on how to use ROSE with OS X (from Markus and
	  Boyana). See ROSE/NOTES_FOR_OSX.
	 

	
********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   README
>Locally modified   configure.in
>Locally modified   developersScratchSpace/Dan/preprocessor.C
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/testDoxygen/Makefile.in
>Locally modified   projects/Makefile.am
>Locally modified   projects/dataStructureGraphing/Makefile.am
>Locally modified   scripts/README
>Locally modified   src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/misc/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/roseIndependentSupport/visualization/Makefile.am
>Locally modified   src/roseIndependentSupport/visualization/README
>Locally modified   tutorial/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      config/use_edg_source_code.m4
+Scheduled for add      developersScratchSpace/Dan/pythonDir/Python.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/abstract.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/bitset.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/bufferobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/cStringIO.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/cellobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/ceval.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/classobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/cobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/codecs.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/compile.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/complexobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/descrobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/dictobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/errcode.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/eval.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/fileobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/floatobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/frameobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/funcobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/graminit.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/grammar.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/import.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/intobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/intrcheck.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/iterobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/listobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/longintrepr.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/longobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/marshal.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/metagrammar.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/methodobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/modsupport.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/moduleobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/node.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/object.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/objimpl.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/opcode.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/osdefs.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/parsetok.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/patchlevel.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pgenheaders.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/py_curses.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pyconfig.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pydebug.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pyerrors.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pyfpe.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pygetopt.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pymactoolbox.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pymem.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pyport.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pystate.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pythonrun.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/pythread.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/rangeobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/sliceobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/stringobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/structmember.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/structseq.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/symtable.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/sysmodule.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/token.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/traceback.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/tupleobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/ucnhash.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/unicodeobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/weakrefobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/Numeric/arrayobject.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/Numeric/f2c.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/Numeric/ranlib.h
+Scheduled for add      developersScratchSpace/Dan/pythonDir/Numeric/ufuncobject.h
+Scheduled for add      projects/dataStructureGraphing/AttributeType.h
+Scheduled for add      projects/dataStructureGraphing/ControlStructure.C
+Scheduled for add      projects/dataStructureGraphing/ControlStructure.h
+Scheduled for add      projects/dataStructureGraphing/GenGeneration.C
+Scheduled for add      projects/dataStructureGraphing/GenGeneration.h
+Scheduled for add      projects/dataStructureGraphing/GenRepresentation.C
+Scheduled for add      projects/dataStructureGraphing/GenRepresentation.h
+Scheduled for add      projects/dataStructureGraphing/README
+Scheduled for add      projects/dataStructureGraphing/helpFunctions.C
+Scheduled for add      projects/dataStructureGraphing/helpFunctions.h
+Scheduled for add      projects/dataStructureGraphing/main.C
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/CodeGeneratedEDG.C
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/CodeGeneratedEDG.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/edgFrontEnd.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/local_cfe.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/edgFrontEndWithoutSage/testEdgFrontEnd.C
********* Files Scheduled to be removed *********
-Scheduled for removal  projects/dataStructureGraphing/README.txt
-Scheduled for removal  projects/dataStructureGraphing/accumulatorAttribute.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureFunction.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructurePreprocessor.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureTest_1.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureTest_2.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureTest_3.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureTransformation.C
-Scheduled for removal  projects/dataStructureGraphing/dataStructureTransformation.h
-Scheduled for removal  projects/dataStructureGraphing/inheritedAttribute.C
-Scheduled for removal  projects/dataStructureGraphing/linkedListTestCode.C
-Scheduled for removal  projects/dataStructureGraphing/linkedListTestCode.C~
-Scheduled for removal  projects/dataStructureGraphing/nodeAttributeProperty.C
-Scheduled for removal  projects/dataStructureGraphing/options.C
-Scheduled for removal  projects/dataStructureGraphing/printData.C
-Scheduled for removal  projects/dataStructureGraphing/printDataTest.C
-Scheduled for removal  projects/dataStructureGraphing/sidlFunction.C
-Scheduled for removal  projects/dataStructureGraphing/simpleA++.h
-Scheduled for removal  projects/dataStructureGraphing/synthesizedAttribute.C
-Scheduled for removal  projects/dataStructureGraphing/transformationOptions.C
-Scheduled for removal  projects/dataStructureGraphing/transformationOptions.h
-Scheduled for removal  src/frontend/EDG/EDG_3.3/src/edgFrontEnd.C
********* WARNINGS *********
********* ERRORS *********
	  
	   
	
2005-2/09  Dan Quinlan 0.8.2b
	* Added ROSE Tutorial, still in development.  The tutorial
	  includes over a dozen examples of small ROSE applications which
	  do different sorts of tasks, together with input codes and the
	  output from each example (using the specificed input).  

	* Moved some redundently named files:
	     ROSE/src/roseIndependentSupport/graphics/DOTGraphInterface.h
	     ROSE/src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.h
	     ROSE/src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.C
	  to
	     ROSE/src/roseIndependentSupport/graphics/DOTGraphInterface.h.redundant_file
	     ROSE/src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.h.redundant_file
	     ROSE/src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.C.redundant_file
	since they already existed in:
	     ROSE/src/3rdPartyLibraries/MSTL
	and lead to problems when the wrong version clobbered the correct
	    versions when copied into ROSE/include during "make install"
	This caused "make installcheck" to fail.  These are Nil's vesions
	of some files that Markus had originally.  I understand that
	Markus added the features that were lacking in Nil's original
	version so that we no long require Nil's version, but I'm not
	certain.

	* Removed the chapter on the tutorial from the User Manual
	and made the ROSE Tutorial a separate document.  This is because
	it was exceeding the capacity of LaTeX (too many figures).

	* Fixed up get_qualified_name() to be consitant on all nodes where
	    it is implemented (union of scope and name, for named IR
	    nodes).

	* Added support for global qualifier "::" in typedefs.
	


********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/README
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/Tutorial/tutorial.tex
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.h
>Locally modified   src/roseIndependentSupport/graphics/Makefile.am
>Locally modified   src/util/graphs/GraphDotOutput.h
>Locally modified   tests/roseTests/astOutliningTests/Makefile.am
>Locally modified   tutorial/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      docs/Rose/tutorial.tex.in
+Scheduled for add      src/roseIndependentSupport/graphics/DOTGraphInterface.h.redundant_file
+Scheduled for add      src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.C.redundant_file
+Scheduled for add      src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.h.redundant_file
+Scheduled for add      tutorial/ASTGraphGenerator.C
+Scheduled for add      tutorial/accumulatorAttributeTraversal.C
+Scheduled for add      tutorial/acumulatorAttributeTraversal.C
+Scheduled for add      tutorial/addFunctionDeclaration.C
+Scheduled for add      tutorial/addVariableDeclaration.C
+Scheduled for add      tutorial/buildCFG.C
+Scheduled for add      tutorial/commandlineProcessing.C
+Scheduled for add      tutorial/debuggingIRnodeToString.C
+Scheduled for add      tutorial/debuggingSourceCodePositionInformation.C
+Scheduled for add      tutorial/identityTranslator.C
+Scheduled for add      tutorial/inheritedAndSynthesizedAttributeTraversal.C
+Scheduled for add      tutorial/inheritedAttributeTraversal.C
+Scheduled for add      tutorial/inputCode_1.C
+Scheduled for add      tutorial/inputCode_ASTGraphGenerator.C
+Scheduled for add      tutorial/inputCode_AddFunctionDeclaration.C
+Scheduled for add      tutorial/inputCode_AddVariableDeclaration.C
+Scheduled for add      tutorial/inputCode_BuildCFG.C
+Scheduled for add      tutorial/inputCode_ExampleDebugging.C
+Scheduled for add      tutorial/inputCode_ExampleTraversals.C
+Scheduled for add      tutorial/inputCode_IdentityTranslator.C
+Scheduled for add      tutorial/inputCode_InstrumentationTranslator.C
+Scheduled for add      tutorial/inputCode_LoopOptimization.C
+Scheduled for add      tutorial/inputCode_LoopOptimization_fusion.C
+Scheduled for add      tutorial/inputCode_LoopRecognition.C
+Scheduled for add      tutorial/inputCode_QueryLibrary.C
+Scheduled for add      tutorial/inputCode_ResolvingOverloadedFunctions.C
+Scheduled for add      tutorial/inputCode_TemplateParameterExtration.C
+Scheduled for add      tutorial/inputCode_TypeInfoFromFunctionParameters.C
+Scheduled for add      tutorial/instrumentationExample.C
+Scheduled for add      tutorial/loopOptimization.C
+Scheduled for add      tutorial/loopRecognition.C
+Scheduled for add      tutorial/nestedTraversal.C
+Scheduled for add      tutorial/persistantAttributes.C
+Scheduled for add      tutorial/queryLibraryExample.C
+Scheduled for add      tutorial/resolveOverloadedFunction.C
+Scheduled for add      tutorial/rose_slicingExample.C
+Scheduled for add      tutorial/slicingExample.C
+Scheduled for add      tutorial/synthesizedAttributeTraversal.C
+Scheduled for add      tutorial/templateParameter.C
+Scheduled for add      tutorial/typeInfoFromFunctionParameters.C
+Scheduled for add      tutorial/visitorTraversal.C
+Scheduled for add      tutorial/exampleMakefile.in
********* Files Scheduled to be removed *********
-Scheduled for removal  src/roseIndependentSupport/graphics/DOTGraphInterface.h
-Scheduled for removal  src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.C
-Scheduled for removal  src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.h
********* WARNINGS *********
********* ERRORS *********

	
2005-1/24  Dan Quinlan 0.8.2a
	This check-in is separate from the check-in of the latest template
	work (representing the newest work on Kull).  That will be next 
	over 90% of Kull compiles, and I want to finish the rest and
	then fix details that new required features of the IR have broken
	in the AST Rewrite Mechanism (then I will check that work in).
	
	* Added edg_prelink mechanism to ROSE so that we could avoid
	  calling as a separate utility.  Calling it as a separate
	  utility required ROSE to know the path to the compiletree for
	  ROSE or the install path (no mechanis was available to select
	  one or the other).  Previously ROSE translators worked because
	  the path to edg_prelink (in the ROSE/frontend/EDG/EDG_3.3/util
	  directory) had to have been set.  This was a difficult
	  constraint to explain and enforce and verify.  So now it is
	  removed as a constraint.  The problem became more obvious to
	  me when showing Gary Kumfort how easy ti was to install and
	  use ROSE (it was not and this was part of the problem).

	* Removed misleading comment from edg_prelink.c which appeared
	  to report an error when there was none.  Error reported that
	  there was no *.ti file (template instantiation file) associated
	  with the input file (only happened when there was no object file
	  name (-o option) specified.

	* Added option in Makefile.am (must be uncommented) to permit 
	  compilation of a standalone version of the EDG front-end NOT
	  using SAGE.  To build this version you must uncomment the line
	       # SKIP_SAGE= -DBACK_END_IS_SAGE_GEN_BE=0
	  within the Makefile.am.  NOTE THAT ALL OF EDG/src MUST BE
	  RECOMPILED to make this work. Several warnings about this are
	  present in the Makefile.am and are output if trying to compile
	  the standalone EDG program (edgFrontEnd), run "make clean" to
	  remove all files.  Use "make edgFrontEnd" to compile the
	  standalone frontend program which uses only EDG.  This 
	  mechanism is provided to support work that Andreas is doing 
	  (Norway) and also support testing and debugging; if it does not
	  compile with EDG, then it will not compile using ROSE :-).
	  This option can also be uncommented directly in the makefile
	  (instead of the makefile.am).  More comments are contained in
	  the Makefile.am within ROSE/src/frontend/EDG/EDG_3.3/src.
	  The default is to compile EDG for use with SAGE (using SAGE).

	* Within the EDG/EDG_3.3/src directory I have built both a static
	  and dynamic library.  The technique used to do this fits
	  better within automake which has previously complained in 
	  each directory about building a *.so library (invalid name).
	  I expect that automake wants to encourage us to use libtool,
	  but I have not had good success with libtool previously so I 
	  would like to not do that.  The techniques used builds both a *.a
	  and a *.so library, which is likely a good idea anyway and it
	  does not take much time to build the *.a library (less than a
	  second) so it may work well.  This technique may be used else
	  where witin ROSE in the near future (if it works well).
	  Just for the reconrd this configuration stuff is REALLY tedious
	  and boring, even if it is important for end users :-).
	
********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   config/EDG.m4
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   docs/testDoxygen/Makefile.in
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/fe_common.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/lang_feat.h
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/roseSupport/templateSupport.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/testCode.C
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edgFrontEnd.C
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/testEdgFrontEnd.C
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********
	
2004-11/11  Qing Yi 0.8.1a
        . Removed the duplicated storage of data members in various SgNodes when these members
          are already stored in a decendent of the current node. As the result,
          some previously available member access functions in various SgNodes are no longer
          available and need to be translated or removed, including:
              SgReturnStmt:  get/set_return_expr_i   -> get/set_return_expr
              SgExpressionStmt: get/set_the_expr_i -> get/set_the_expr
              SgForStatement:   getInitializerStatement->get_for_init_stmt
                                get/set_test_expr_i ->get/set_test_expr
                                get/set_increment_expr_i ->get/set_increment_expr
              SgSwitchStatement: get/set_item_selector_i -> get/set_item_selector
              SgCaseOptionStmt: get/set_key_i  -> get/set_key
              SgAsmStmt:    get/set_expr_i  -> get/set_expr
              SgSpawnStmt:   get/set_the_func_i -> get/set_the_func
              
              SgFunctionDeclaration: set_mangled_name() -> 
                     remove because it is no longer required before calling get_mangled_name()
              SgInitializedName: get_named_item()  ->
                     remove because now the double-initializedName situation in 
                     Variabledeclarations has been fixed.
           Further, some constructors  of the above SgNodes now take fewer argument.
        .  Removed p_named_item pointer from SgInitialized name, so SgInitalizedName
           nodes no longer exist in pairs in variable declarations. Further,
           pointers to VariableDefinitions are stored inside SgInitializedName.
           Pointers to declarations are no longer explicitly stored because they are 
           always the parents, or grandparents of SgInitializedName. 
           The old interface remains except get_named_item. 
        .  Renamed some conflicting names in generating member access functions. including
              SgForStatement:  p_init_stmt -> p_for_init_stmt, accessible through get/set  
        .  Removed the initializer pointer in SgVariableDefinition, since it is already 
           stored in SgInitializedName
        .  Rewrote member access functions in ROSETTA Statement.code, so that all
           member accesses goes through the ROSETTA/Grammar/dataMemberAccessFunctions.macro
           templates, which track the modificatioin of members.
        .  Removed declaration pointers in FunctionDefinitions and 
           ClassDefinitions, since the declarations are always parents of the definitions.
           The old interface remains. 
        .  Added new member access function macros in ROSETTA/Grammar
        .  Deactivated astOutlining, both source directory and test directory,
           because its compilation issues regarding usage of SAGE nodes. 
           Reinstalling (in the next checkin by Alin) the directory requires 
           modifying the following makefiles:
            ROSE/src/Makefile.am
            ROSE/config/Makefile.for.ROSE.includes.and.libs
            ROSE/exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
            ROSE/src/midend/astOutlining/Makefile.am
            ROSE/tests/roseTests/Makefile.am
            ROSE/tests/roseTests/astOutliningTests/Makefile.am
        .  Added support for copy-unparsing: when statements are not changed,
           they are unparsed by copying from the original source file.
        .  Added support for tracking the modification of SAGE IR nodes.
        .  Restored tests in programAnalysis and others, deactivated by
           0.8.0.a, after fixing various problems.
        .  Fixed bug in loopProcessing/depInfo/DepRel.C in merging DepRels.
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.52h
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.5
dot version gviz 1.7.3b (Mon Feb 26 14:10:22 EST 2001)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   docs/testDoxygen/Makefile.in
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/AtermTranslation/strategoToTerm.C
>Locally modified   projects/BabelPreprocessor/options.C
>Locally modified   projects/BabelPreprocessor/sidlFunction.C
>Locally modified   projects/OpenMPPreprocessor/parallelSTLQuery.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.C
>Locally modified   projects/arrayOptimization/test/Makefile.am
>Locally modified   projects/arrayOptimization/test/TestDriver
>Locally modified   projects/arrayOptimization/test/rose_interp1.C.save
>Locally modified   projects/arrayOptimization/test/rose_redBlack1.C.save
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   projects/containerParallelizer/test/Makefile.am
>Locally modified   src/Makefile.am
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Symbol.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/dataMemberAccessFunctions.macro
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/node.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/terminalList.C
>Locally modified   src/ROSETTA/src/terminalList.h
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparse_format.h
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/SageIII/AstFixes.C
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astOutlining/Makefile.am
>Locally modified   src/midend/astUtil/annotation/AnnotIO.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.h
>Locally modified   src/midend/loopProcessing/computation/LoopInfo.h
>Locally modified   src/midend/loopProcessing/computation/LoopTree.C
>Locally modified   src/midend/loopProcessing/computation/LoopTree.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeObserver.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.h
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/DepGraph.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnalImpl.C
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.C
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.h
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.C
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.h
>Locally modified   src/midend/loopProcessing/driver/FusionAnal.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.h
>Locally modified   src/midend/loopProcessing/driver/TransformAstTree.C
>Locally modified   src/midend/loopProcessing/driver/TransformComputation.C
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.C
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceImpl.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceLocality.h
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/utility_functions.C
>Locally modified   src/roseSupport/utility_functions.h
>Locally modified   src/util/support/Adaptors.h
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astOutliningTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/TestLoopProcessor.C
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/finiteDifferencingTest.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
!NEEDS MERGE        src/frontend/SageIII/preproc.C
********* Files Scheduled to be added *********
+Scheduled for add      src/ROSETTA/Grammar/dataWrapAccessFunctions.macro
+Scheduled for add      src/ROSETTA/Grammar/listMemberAccessFunctions.macro
+Scheduled for add      src/backend/unparser/copy_unparser.C
+Scheduled for add      src/backend/unparser/copy_unparser.h
+Scheduled for add      src/midend/loopProcessing/depInfo/ReuseAnalysis.C
+Scheduled for add      src/midend/loopProcessing/depInfo/ReuseAnalysis.h
+Scheduled for add      tests/roseTests/loopProcessingTests/fusiontest1.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_fusiontest1.C.save
********* Files Scheduled to be removed *********
-Scheduled for removal  src/midend/loopProcessing/computation/LoopTreeNodeType.h
-Scheduled for removal  src/midend/loopProcessing/computation/LoopTreeOptimize.h
********* WARNINGS *********
********* ERRORS *********


2004-10-27 Markus Schordan 0.8.0b
	* deactivated project AtermTranslation because dependence on files
	  aterm1.h, aterm2.h which are not in the repository
	  (requires Stratego to be installed)
	  see files: projects/Makefile.am, configure.in for comments
	* updated the computation of synthesized attributes in AstProcessing
	  to call defaultSynthesizedAttribute only exactly once for
	  initialization of a synth.attribute. This allows to use the function
	  defaultSynthesizedAttribute in mechanisms with side-effects.

********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3
gcc (GCC) 3.3
doxygen 1.2.14
dot version 1.10 (Mon Feb  9 18:00:36 CET 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   projects/Makefile.am
>Locally modified   src/midend/astProcessing/AstProcessing.C


2004-10-23 Dan Quinlan 0.8.0a

	* Fixed up handling of documentation between development and
	  distribution versions of ROSE.  Only a development version of
	  ROSE (a version of ROSE checked out from CVS) can be used to
	  build documentation.  Distributions versions of ROSE (what
	  user's get e.g. ROSE-0.7.8a.tar.gz) can not be used to build
	  documentation, to do so would place a significant configuration
	  burden upon developers trying to add and maintain the
	  documentation.  To make up for this, both the HTML and LaTeX
	  documentation is build by the "make dist" rule and the files
	  ROSE-0.7.8a-HTML-Docs.tar.gz and ROSE-0.7.8a-UserManual.ps 
	  are included in the distribution (in ROSE/docs/Rose).

	* Added macros to permits use of GNU attributes (new feature of
	  GNU compilers).
	     #define ROSE_DEPRECATED_FUNCTION __attribute__ ((deprecated))
	     #define ROSE_DEPRECATED_VARIABLE __attribute__ ((deprecated))
	  These macros will help us communicate to users as we migrate
	  to a better intrface within some parts of SAGE III.

	* Added AST test of new type traversal (work still in progress).
	  This traversal uses the standard traversal to traverse non-type
	  and non-symbol IR nodes and then uses nested traversals to
	  explicitly traverse several, but not all types.

	* Fixed function SgFunctionRefExp and SgMemberFunctionRefExp to
	  have the correct Sg_File_Info information.  Previously they
	  referenced the function declaration and not the use of the 
	  function.

	* Fixed file information built for all value expressions
	  (constants, etc.).  Previously there was none, since EDG does
	  not save file information for constants, but it was possible to
	  extract it from the expression before the constant was
	  processed and pass the Sg_File_Info objects along to where the
	  Sage III value expressions are built. Previously in a test code
	  with 35,000 IR nodes, 10,000+ had the default values for the
	  source position information, now only 2 IR nodes have the
	  default information (both IR nodes appear to be compiler
	  generated so they would not have any corresponding source
	  position information anyway.

	* Fixed bug in generation of DOT files from Qing's graph
	  interface.  Details are in the DOTSubgraphRepresentation.C.
	    // DQ (8/14/2004):
	    // This fixes an long outstanding bug in the use of the DOT interface classes with Qing's graph 
	    // interface. The DOTSubgraphRepresentation<> class does not have a dotout data member
	    // the DOTRepresentation<> (the base class) does have a dotout data member and direived class
	    // should not delete the base class's data member.  It would work if we had set the pointer to
	    // NULL after deleting it (a habit that I very much like and which would have avoided the
	    // bug, but it is better that the derived class not delete the base class data members.
	    // delete dotout;

	* Removed use of old SageII SgAttribute mechanism.

	* Removed old SageII SgPragma mechanism.

	* Moved string getVariantName ( VariantT v ) to new
	  sageSupport.[hC] file.

	* Removed get_variantName(int v): redundent with getVariantName(VariantT v)

	* Deprecated SgLocatedNode::getFileName() (access function for "get_file_info()->get_filename()")

	* Changed return type of virtual int variantT() const; to virtual VariantT variantT() const;

	* Deprecated (funtions now defiled as below):
	     virtual int variant() const ROSE_DEPRECATED_FUNCTION;
	     virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;

	* Removed functions that used old SageII attribute mechanism:
	     int SgStatement::get_suppress_global($GRAMMAR_PREFIX_$GRAMMAR_X_MARKER_TemplateInstantiationDecl *node);
	     void SgStatement::output_pragma(ostream& os);
	     void SgStatement::set_pragma();
	     void SgExpression::set_lvalue();
	     void SgStatement::set_suppress_atomic();
	  I think suppress_atomic() access functions were part of the
	  old CC++. New boolean variables have been added to permit marking
	  of expressions as an lvalue (not tested yet).

	* Removed support for pragmas at the expression level (do we need
	    this?)  We need to visit this issue and perhaps unify the
	    existing support for pragmas on statements and expressions.

	* Make the default to generate developer level Doxygen
	  documentation.  This allows the default generated documentation
	  within a automatically generated distribution to be built
	  properly.  This option may be changed in the future, but since
	  the Doxygen documentation for ROSE is currently under
	  development (thanks to new suggestions and work with Alin Jula)
	  it make more sense to have the default be the more complete
	  version of the documentation (even if it presents more of the
	  interfaces than we would want to present to users. The previous
	  setup (with default being the user documentation) presented too
	  little to be useful, this version likely over compensates by
	  presenting a bit too much, but I think this is still an
	  improvement.  Any suggestions about documentation are welcome.
	
	* Implemented verbose modes to take an integer parameter.  
	     -rose:verbose 0 is the same as the default without the option
	     -rose:verbose 1 generates a minor amount of I/O feedback
	     -rose:verbose 2 generates more I/O
	     -rose:verbose 2 generates still more I/O (currently maximal)
	  By default ROSE now generates no output (just like g++).
	  This is important when some options are used (generating 
	  dependence rules for make for example with gnu g++ -mm 
	  option.

	* Added test in ROSE/tests/CompilerOptionsTests/A++Code
	  for quiet output (default) for ROSE translator.  No 
	  output is permitted now for translators without setting
	  -rose:verbose n (where n is greater than 0).  Any output
	  from a ROSE translator causes the test to fail.

	* Fixed use of iostream.h in ROSE/tests/CompileTests/A++Code/A++_headers.h
	  to include <iostream> (with new C++ header file naming scheme).

	* Implemented automated processing of the GNU 3.x g++ header files for
	  the case where the GNU g++ compiler is used as the backend
	  processor (see comment in ROSE/config/create_system_headers,
	  below). We previously used the GNU 2.96 header files when the 
	  GNU g++ backend was selected, and while this worked well for
	  nearly a year or more, recent test codes that I have created
	  have demonstrated errors associated with the inconsistant use
	  of the 2.96 and 3.x header files.  Only a problem for C++, not
	  for C. Comment in code:
	     # DQ (8/28/2004): The gnu-3.x-headerfile-fixup.pl is used to process the backend compiler's
	     # header files as required.  For some systems no processing is required.  However, for GNU
	     # there is some processing (non-standard features) which the g++ compiler implements just to
	     # be able to process its own header files.  Since we can't implement these language features
	     # in ROSE, we process the header files to remove or fixup the the non-standard parts of the
	     # header files.  In general the header files match the header files associated with the
	     # backend compiler used with ROSE.
	  see perl script ROSE/config/gnu-3.x-headerfile-fixup.pl for details.

	  Note that the new 3.x header files still generate several
	  warnings (below), which I don't know now to avoid.  In case
	  anyone is interested in playing with this.  The new header files 
	  also demonstrate at least on bug in ROSE regarding proper
	  pushing and poping of scopes internally (which is a higher
	  priority at the moment).

	  Current warnings generated using 3.x header files (after
	  automate processing):
	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 285: warning: 
              integer conversion resulted in a change of sign
              { return __glibcpp_min(char); }
                       ^

	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 335: warning: 
                integer conversion resulted in truncation
              { return -__SCHAR_MAX__ - 1; }
                       ^
 
	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 437: warning: 
                integer operation result is out of range
              { return __glibcpp_max (wchar_t); }
                       ^

	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 485: warning: 
                integer conversion resulted in truncation
              { return -__SHRT_MAX__ - 1; }
                       ^

	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 585: warning: 
                integer conversion resulted in a change of sign
              { return -__INT_MAX__ - 1; }
                       ^

	  "/home/dquinlan2/ROSE/LINUX-3.3.2/g++_HEADERS/hdrs1/limits", line 685: warning: 
                integer conversion resulted in a change of sign
              { return -__LONG_MAX__ - 1; }
                       ^

	* Namespace position in source is tricky in EDG, the position of
	  the namespace is the position of the first declaration of the
	  namespace and not subsequent namespaces.  And there can be
	  multiple declarations of a single namespace (in the same
	  namespace)!.  The namespace "std" is the best example of this
	  in the compiler's header files (particularly the 3.x gnu header
	  files where it appears over and over again, so that more
	  functions and types can be added to the std namespace.  As 
	  a result the source location of the start of a namespace is
	  easy to get wrong and I got it wrong, but now it is fixed.
	  There is also a test to make sure the that start of a namespace
	  appears in the same file as the ending "}" of a namespace.
	  This caught many errors, for which there was a single fix,
	  once I found it :-).

        * Fixed handling of source sequence lists so that we now always
	  traverse to the end of the list (previously we had stopped
	  prematurely in a particular case which only came up when using
	  std lib functions with namespaces and templates).  This was 
	  debugged as part of support for the new 3.x gnu header files.

	* Turned on handling of "restrict" keyword in EDG, part of STL
	  STL support (STL uses restrict internally).

	* Fixed many more namespace details.

	* Fixed pragma handling, #pragma is now allowed almost anywhere 
	  within the source program.  Exceptions where #pragma is not
	  allowed are:
	       for (int i=0; i < 10; i++)
	    #pragma not allowed
	          {
	          }
	       switch (i)
	    #pragma not allowed
	          {
	          }
	  Not clear if these are worth allowing, currently they report an 
	  error in ROSE, which seems sufficient.  Test code: test2004_15.C
	  tests use of #pragma in lots of different locations.
	

	* Added several specific functions to SgName
	    string SgName::getString() const;
	    friend SgName operator+ ( const SgName & n1, const SgName & n2 );
	    SgName SgName::assembleQualifiedName(const SgName & scopeQualifiedName, const SgName & localName);

	    The assembleQualifiedName() function makes sure that no
	    leading "::" is introduced when scopeQualifiedName is empty
	    (as it is for a SgGlobal and SgBasicBlock).

	* Reimplemented namespace and using declaration and using
	  declaration, since they were much more complex that I
	  originally understood them to be. We now use more of the
	  information in the EDG AST and this eliminates having to
	  implement name lookup (which is REALLY complicated in the
	  standard, much more that I expected), so use EDG!

	* Eliminated get_namespace() function in EDG/Sage III connection
	  code.  This reduces the dependence upon the parent pointers
	  being set properly, since there is now one less location where
	  they are used. In the better design, all information is obtained
	  directly from the EDG AST so that the complexity of the
	  namespace and using statement handling is greatly simplified.
	  All declarations are found from symbols previously stored in
	  the EDG AST.  This design makes even more clear why the
	  connection of Sage III to EDG must be done top down! I would
	  not know how to evaluate namespace handling bottom up, without
	  it becoming more complex :-).  Eventually we hope to only
	  set the parent pointers in a post processing phase.

	* Fixed pointers to member data (which were confused in the
	  EDG/Sage connection and in the ROSE unparser as being pointers
	  to member functions).  See test code test2004_86.C for tested
	  examples. Problem occured in compiling Boost header files.

	* Implemented support for vacuous destructor calls in EDG/Sage
	  connection and in the unparser.

	* Fixed EDG/Sage connetion code which tended to get to the end of 
	  the source sequence list and yet still tended to assert that 
	  curr_source_sequence_entry != NULL and use the NULL value
	  which caused many errors.  test2004_81.C 82.C now tests this
	  for at least a commonly occuring case in STL and Boost.

	* Implemented const pointer to member function in EDG/Sage
	  connection. There are 15 different types of constants
	  (several const addresses, values, int, float, and many more ...).
	  It was shocking to see all this, but all are now implemented and
	  several are tested (likely only the Plum Hall test suite can be
	  relied upon to test all of these).  Test2004_83.C demonstrates
	  the code from Boost which started this adventure.

	* Added transfomation to compiler header file processing to remove
	  "extern template" GNU g++ extensions from all the version 3.x 
	  header files.  "extern template" was related to what is now
	  "export" and was an old GNU C++ extension.  For our purposes in
	  ROSE we could substitite "extern template" with "template"
	  this is now done automatically at configure time when the 
	  backend compiler's header files are copied and translated
	  for use by ROSE.  this is done by a Perl script (discussed
	  above).

	* Modified behavior of configure time processing of header files
	  so that this is now always done.  so rerunning configure
	  rebuilds ROSE compiler header files (generating them from 
	  those used by the backend compiler, often GNU 3.x in development).
	
	* Testing compilation with Kull demonstrated that the GNU
	  implementation of "string" didn't compile using EDG (was not
	  valid C++ as EDG understood it).  since the GNU header files
	  have and use several GNU C++ extensions this is not very
	  surprising. I figured out a minimal modification of the GNU
	  basic_string.h file which implements basic_string (which is
	  typedefed to "string" for users).  The fixes are represented 
	  as a patch (in ROSE/config) and the patch is applied to the
	  basic_string.h file during the header file translation done
	  at configure time.  Reruning configure redoes the translation.
	  The use of the patch seems to work well, and we have to figure
	  out the details of generating patches to support future work
	  with KULL anyway.

	* Implemented support for use of constructors not explicitly
	  defined by the user for classes and templated classes. Stored
	  symbols were missing since the functions had never been seen,
	  symbols are now internally generated (including even template 
	  declarations!).

	* With previous work on forcing symbols to be generated when found
	  to be mising in specific cases, internal testing was made more
	  strict to report any possible symbols not found during
	  processing. Correct behavior is to abort if any symbol that
	  should be found is not found (assertion that all symbols exist, 
	  unless it is reasonable that this is a first use or discovery,
	  in which case the symbol is built and attached to the EDG AST
	  for furture Sage III processing).

	* Fixed placement of some template symbols (for template
	  functions) was placed into the EDG routines (reserved for
	  template function instantiation symbols (thus some symbols
	  were overwritting previously (correctly) placed symbols).
	  This was fixed and now all template symbols are placed into 
	  EDG template structures within the AST.

	* Implemented support for throw to handle three different kinds of
	  throw (previously only one was implemented). Added enum to
	  indicate which of the three is used. Added support in 
	  ROSETTA/src/expressions.C file for additional data members,
	  SgThrow constructor now takes additional parameters.

	* Fixed support for "throw" expression to support concept of
	  rethrow of previous exception (specified using "throw;").

	* Added support for throw as a exception_specification
	  (specified using list of types "throw (T1,T2,T3)").

	* Implemented support for unparsing different throws in 
	  ROSE/src/backend/unparser/unparse_expr.C (incomplete
	  implementation for function throw modifier in case
	  where a exception-specification throw is specified
	  (e.g. "void foobar() throw(T1,T2);").

	* Fixed handling of "()" in throw expressions
	  "throw (className());" compiles with EDG, but not with g++
	  so fixup to unparse as "throw className();".  Note
	  that "()" were a previous problem with constructors
	  "className X();" requires an explicitly defined default
	  constructor (with some compilers, EDG and g++, I think)
	  where as "className X;" will work whether the default
	  constructor is explicitly defined or not.  This was 
	  some of the original reasoning (justification) for the
	  special handling implemented in parenthesis handling
	  the last time I checked things in (7/22/2004).  It is
	  interesting how many places parenthesis are required to
	  not be present to be valid C++ code.  I have however not
	  consulted the C++ standard (on order, not arrived yet).

	* Fixed unparsing of typedefs of function pointers, previously:
	       typedef void *(*swig_converter_func)(void *);
	  unparsed to be:
	       typedef void * *(*swig_converter_func)(void *);
	  Added logic to the unparsePointerType for unparsing "*"
	  to match logic used to know when to unparse the type
	  of the function.  Bug and details represented in test2004_93.C.

	* Fixed previous fix which broke other code :-(.  Now the 
	  current fix passes internal tests of ROSE.  The current 
	  fix is that the explicit unparsing of the return type of
	  function and member function pointers in typedef declarations
	  is eliminated.  It appears that this should not have ever been
	  put in previously.  Now the case of function and member function
	  pointers can likely be unified with the case of non function and
	  nonmember function pointers (but this has not been done, yet!).
	  The previous fix has been removed!

	* Added support in util/string_support.h for numberToString()
	  functions for pointers, and unsigned int.

	* Added more debugging support in the unparser (can be turned on 
	  at the top of the unparse_stmt.C, unparse_expr.C, and 
	  unparse_type.C.

	* Added support for defining and non-defining declarations.
	  Marked the declaration as a forward since we are not in a part of the EDG/Sage 
	  connection code which generates class definitions and so this can not be a defining declaration!
	  If later in processing it happens that this function has been called from a function which 
	  generates a defining declaration then this will be made the first non-defining declaration and a
	  new declaration will be built (not marked as forward) and it will be make the defining 
	  declaration and this declaration will be updated to reference it as the defining declaration!
	  Thus the defining and non defining declarations will be available from each declaration and the
	  non-defining declarations will be shared and the defining declarations will not be shared!

	* Fixed SgTemplateInstantiationDeclaration to only accept a
	  SgTemplateInstantiationDefn as a definition (previoustly
	  we were using the SgClassDefinition with SgTemplateInstantiationDeclaration
	  which was not quite the right thing to do.  The 
	  SgTemplateInstantiationDeclaration now has a set_definition()
	  member function which takes a SgTemplateInstantiationDefn
	  and hides the base class set_definition() member function.
	  This enforces that the correct handling is done and caught
	  one location in the EDG/Sage inferface where this was not 
	  being handled correctly.

	* Removing the parent side-effect of ROSETTA generated set_xxx() 
	  access functions (not complete yet). this has required that
	  I set the declarations of function parameters explicitly (in the
	  constructor).  It seems that the declaration associated with a
	  function parameter is the function declaration (rather than a 
	  constructed variable declaration, not sure that is the way it
	  should be but I have preserved the behavior.  set_parent is now
	  not called anywhere within the construction of the Sage III AST
	  but is called within the post processing step of fixing up the
	  parent pointers in the AST Fixup.  

	* Added friend equality operator to Sg_File_Info class to permit 
	  testing of reused definitions of defining declarations
	  operator== ( const Sg_File_Info & X, const Sg_File_Info & Y );
	  We need to make sure that as definitions are reused between
	  non-defining and defining declarations that we get the
	  position correct for definitions that are associated with
	  declarations. Even though a definition is built when a
	  non-defining declaration is seen, it is reused (shared) in
	  all declarations and when (and if) finally defined it should have
	  the position of the defining declaration.  This is now tested.

	* Changed several member functions to be const (after change):
	      char* Sg_File_Info::get_filename() const;
	      int Sg_File_Info::get_line() const;
	      int Sg_File_Info::get_col() const;


	* Changed EnumDeclaration::post_construction_initialization()
	  to set the type only if the value of p_type was NULL. It
	  previously rebuilt it's type internally independent of what
	  was passed in as a constructor parameter.

	* Changed ClassDeclaration::post_construction_initialization()
	  to not change the type that it was given.  Previously and type
	  handed in through the constructor parameter list was modified.
	  This had the effect of causing types to use the defining
	  declaration at times (since the unparsing of types is now the
	  unparser at times unparsed class declaration if they are defined
	  through a type (e.g. typedef struct {} X;).  The handling in the 
	  post_construction_initialization() function did not work with
	  the new concept of definind and non-defining declarations.

	* Noticed that SgClassDefinition::post_construction_initialization()
	  and SgTemplateInstantiationDefn::post_construction_initialization()
	  modified the declaration, modified code to output message:
	  "Side-Effect Warning: declaration->set_definition(this) being called from $CLASSNAME::post_construction_initialization()"
	  whenever this happens.  This appears to the the only remaining
	  side-effect on constructors on their input parameters.  Analysis
	  would be helpful here!  The one one was removed (see note above).


	* Noted other side-effect from: 
	       SgEnumDeclaration::insert_enumerator()
	       SgVariableDeclaration::insert_variable()
	  (noted in code and output "Side-Effect Warning").
	  I think that these side-effects to input parameters should be 
	  removed.  But I don't want to break too much for now so 
	  a warning is all they output and we can discuss this in more
	  detail (after Kull compiles).
	

	* Marked all side-effects of input parameters in Sage III.
	  We have tracked down and noted all locations where a Sage III
	  member function modifies its input parameters. The locations
	  where this happens are marked with a print statement which
	  this macro permits us to turn off when we want to either make
	  an intermediate release of just not see the warning messages.
	  Many side-effects have been removed and some are  pending more
	  details discussions internally.  I would like to goal to be a
	  simple rule that input parameters to constructors are not
	  modified by the constructor or any function called within the
	  constructor body.  A stronger rule would be that the input
	  parameters to any access function which gets and data member
	  of sets a data member would not modified its input
	  parameters. Same idea but applied to all access functions, not
	  just constructors.  It is not clear if we need go
	  further. Clearly it might be important to have some function
	  that modify their input parameters but a simple design would
	  disallow it!
	         #define PRINT_SIDE_EFFECT_WARNINGS 0

	* Rewrote unparse functions for class type and enum type.
	  Previous implementions had implemented an older handling of 
	  defining vs. non defining declarations (knowing when to unparse 
	  the declaration's definition).  Such information is now explicit 
	  in the AST (though it can not be represented through isForward()
	  in the declaration because the types reference the declarations
	  and all the types are SHARED!).  So variable declarations and
	  typedef declarations which contain defining declarations are
	  marked explicitly so that the definition can be unparsed in the
	  same statement where it appeared in the ouriginal source code.
	  The unparse functions for class and enum types are now much
	  simpler as a result of not even trying to figure out when to 
	  unparse the associated definitions of enums and classes.

	* Forward references to enum declarations are not allowed by the 
	  C and C++ standards.  They are a common C and C++ extension
	  within many compilers, including EDG, but not g++.  They are 
	  not implemented in the EDG/Sage III interface so they are
	  ignored within ROSE, at present.  The location where they should
	  be added if we want to support them in the future is in the
	  enum case of the switch statement in sage_gen_tag_reference().
	  Currently in this case the function returns a NULL pointer and
	  so it could be justified to implement this case so that at least
	  redeclaration of enum types would be supported (they are allowed
	  in the C and C++ standard, though they appear to be meaningless)
	  and we would have cleaner semantics of return values (non NULL
	  pointers) in the future.  Add it to your C and C++ trivia :-).

	* Fixed "limit" header file warnings (mentioned above in work
	  asociated with this checkin). Set values in 
	  rose-g++-headerfilefixup.h to more acurate values that didn't
	  generate warnings.

	* Added back the set_parent functions to the Sage III 
	  StatementListInsertChild() function.  This is required to fix 
	  a bug in the AST string -based rewrite mechanism, it was
	  previously removed as an unwanted side-effect, but is not 
	  judged reasonable.  Basically what you insert will have it's
	  parent modified to represent inclusion into the new AST
	  (not really an unreasonable side-effect of insertion into an
	  AST).  This allowed the rewrite test codes to pass.
	
	* Fixed name qualification of SgConstructorInitializer
	  expressions. Set qualified_name_need flag to true by 
	  default.  EDG didn't appear to recognize that it was 
	  required. See test2004_120.C for example.
	
	* Commented out several tests run by "make check" rule.
	  I'm not happy that I have done this, I would in general not
	  like to disable any tests and instead fix whatever was causing
	  the problem.  But I suspect that since these tests and part of
	  project developed by others i will have to check in the current
	  work as a first step to working with Markus and Qing to figure
	  out what the problem really is.
	     This test code appears to fall into an infinite loop:
	  SKIPPING TEST CODES RUN BY "make check" rule in exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo directory ...
	     These two tests terminate in an error.
	  SKIPPING TEST CODES RUN BY "make check" rule in projects/arrayOptimization/test directory ...
	  SKIPPING TEST CODES RUN BY "make check" rule in projects/containerParallelizer/test directory ...
	  SKIPPING TEST CODES RUN BY "make check" rule in tests/roseTests/programTransformationTests directory ...

	* Removed processing of the following directories since I could
	  not make them work with the current version (when running
	  "distcheck" rule).  I don't like that I did this, but I 
	  suspect that I need to work with other developers to help
	  fix the problem and this requires that i checkin the current 
	  work.
	  The directories that I had problems with were:
	       src/3rdPartyLibraries/checkPointLibrary/Makefile
	       src/midend/programAnalysis/annotationLanguageParser/Makefile
	       src/midend/programAnalysis/sideEffectAnalysis/Makefile
	       tests/roseTests/programAnalysisTests/Makefile
	       tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/Makefile

********* TESTED with **************
automake (GNU automake) 1.6.3
autoconf (GNU Autoconf) 2.57
GNU Make version 3.79.1
g++ (GCC) 3.3.2
gcc (GCC) 3.3.2
doxygen 1.3.8
dot version 1.12 (Sun Aug 15 02:43:07 UTC 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   build
>Locally modified   configure.in
>Locally modified   rose.docs.in
>Locally modified   ROSE_ResearchPapers/selectedpapers.bib
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/create_system_headers
>Locally modified   config/support-doxygen.m4
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Dan/preprocessor.C
>Locally modified   developersScratchSpace/Dan/test2001_10.C
>Locally modified   developersScratchSpace/Dan/test2004_15.C
>Locally modified   developersScratchSpace/Dan/test2004_35.C
>Locally modified   developersScratchSpace/Markus/mscomp.C
>Locally modified   docs/Makefile.am
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/gettingStarted.tex
>Locally modified   docs/Rose/implementation.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/rose.cfg.in
>Locally modified   docs/Rose/ProgramAnalysis/ProgramAnalysis.tex
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/Makefile.am
>Locally modified   projects/BabelPreprocessor/babelPreprocessor.C
>Locally modified   projects/BabelPreprocessor/babelTransformation.C
>Locally modified   projects/BabelPreprocessor/options.C
>Locally modified   projects/BabelPreprocessor/sidlFunction.C
>Locally modified   projects/OpenMPPreprocessor/parallelSTLQuery.C
>Locally modified   projects/arrayOptimization/test/Makefile.am
>Locally modified   projects/containerParallelizer/ContainerTransformer.C
>Locally modified   projects/containerParallelizer/test/Makefile.am
>Locally modified   projects/dataBase/DatabaseGraph.h
>Locally modified   projects/dataBase/GlobalDatabaseConnection.C.in
>Locally modified   projects/dataBase/GlobalDatabaseConnection.h
>Locally modified   projects/dataBase/Makefile.am
>Locally modified   projects/dataBase/TableAccess.h
>Locally modified   projects/dataBase/TableDefinitions.h
>Locally modified   projects/highLevelGrammars/overloadedOperatorRepresentation.C
>Locally modified   proposals/SageIIInotes.txt
>Locally modified   proposals/documentationRequirements.txt
>Locally modified   proposals/testingProposal.txt
>Locally modified   scripts/Makefile.am
>Locally modified   scripts/configure_with_SQL
>Locally modified   src/Makefile.am
>Locally modified   src/rose.h
>Locally modified   src/roseInternal.h
>Locally modified   src/testRoseLib.C
>Locally modified   src/3rdPartyLibraries/Makefile.am
>Locally modified   src/3rdPartyLibraries/MSTL/DOTGraphInterface.h
>Locally modified   src/3rdPartyLibraries/MSTL/DOTRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.C
>Locally modified   src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.h
>Locally modified   src/3rdPartyLibraries/MSTL/Makefile.am
>Locally modified   src/3rdPartyLibraries/PDFLibrary/Makefile.am
>Locally modified   src/ROSETTA/Grammar/Common.code
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Symbol.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/node.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/symbol.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.docs
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/misc/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_def.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_walk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/lang_feat.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il_walk.c
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageMacros.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.h
>Locally modified   src/frontend/SageIII/AstFixes.C
>Locally modified   src/frontend/SageIII/AstFixes.h
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.C
>Locally modified   src/frontend/SageIII/sage3.h
>Locally modified   src/midend/Makefile.am
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/inlinerSupport.h
>Locally modified   src/midend/astInlining/isPotentiallyModified.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astProcessing/AgProcessing.C
>Locally modified   src/midend/astProcessing/AstDOTGeneration.C
>Locally modified   src/midend/astProcessing/AstNodePtrs.C
>Locally modified   src/midend/astProcessing/AstNodePtrs.h
>Locally modified   src/midend/astProcessing/AstPDFGeneration.C
>Locally modified   src/midend/astProcessing/AstProcessing.C
>Locally modified   src/midend/astProcessing/AstProcessing.h
>Locally modified   src/midend/astProcessing/AstRestructure.C
>Locally modified   src/midend/astProcessing/Makefile.am
>Locally modified   src/midend/astProcessing/CocoPreprocessor/Makefile.am
>Locally modified   src/midend/astQuery/Makefile.am
>Locally modified   src/midend/astQuery/nodeQuery.C
>Locally modified   src/midend/astQuery/nodeQuery.h
>Locally modified   src/midend/astQuery/queryVariant.C
>Locally modified   src/midend/astRewriteMechanism/Makefile.am
>Locally modified   src/midend/astRewriteMechanism/nodeCollection.C
>Locally modified   src/midend/astRewriteMechanism/nodeCollectionTemplates.C
>Locally modified   src/midend/astRewriteMechanism/prefixGeneration.C
>Locally modified   src/midend/astRewriteMechanism/rewrite.h
>Locally modified   src/midend/astRewriteMechanism/rewriteASTFragementString.C
>Locally modified   src/midend/astRewriteMechanism/rewriteDebuggingSupportTemplates.C
>Locally modified   src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   src/midend/astRewriteMechanism/rewriteSynthesizedAttribute.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/programAnalysis/Makefile.am
>Locally modified   src/roseExtensions/Makefile.am
>Locally modified   src/roseExtensions/databaseConnection/Makefile.am
>Locally modified   src/roseSupport/roseTranslators.C
>Locally modified   src/roseSupport/roseTranslators.h
>Locally modified   src/roseSupport/templateSupport.C
>Locally modified   src/roseSupport/transformationSupport.C
>Locally modified   src/roseSupport/utility_functions.C
>Locally modified   src/roseSupport/utility_functions.h
>Locally modified   src/util/Makefile.am
>Locally modified   src/util/commandlineProcessing/Makefile.am
>Locally modified   src/util/graphs/GraphDotOutput.h
>Locally modified   src/util/stringSupport/Makefile.am
>Locally modified   src/util/stringSupport/string_functions.C
>Locally modified   src/util/stringSupport/string_functions.h
>Locally modified   tests/testTranslator.C
>Locally modified   tests/CompileTests/A++Code/A++_headers.h
>Locally modified   tests/CompileTests/A++Code/Makefile.am
>Locally modified   tests/CompileTests/A++Tests/Makefile.am
>Locally modified   tests/CompileTests/C++Code/test2004_35.C
>Locally modified   tests/CompilerOptionsTests/A++Code/Makefile.am
>Locally modified   tests/CompilerOptionsTests/A++Code/test_bool.C
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/testNewRewrite.C
>Locally modified   tests/roseTests/astRewriteTests/testRemoveStatements.C
>Locally modified   tests/roseTests/astRewriteTests/testRewritePermutations.C
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programTransformationTests/Makefile.am
>Locally modified   tutorial/database/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      config/gnu-3.x-headerfile-fixup.pl
+Scheduled for add      config/gnu-hdrs1-bits-basic_string-h.patchfile
+Scheduled for add      config/iostream_handling_commands.sed
+Scheduled for add      config/rose-g++-headerfilefixup.h
+Scheduled for add      developersScratchSpace/Dan/DuffsDevice.C
+Scheduled for add      developersScratchSpace/Dan/addNewFunction.C
+Scheduled for add      developersScratchSpace/Dan/callGraph.C
+Scheduled for add      developersScratchSpace/Dan/callGraphInputTest.C
+Scheduled for add      developersScratchSpace/Dan/callGraphInputTest.h
+Scheduled for add      developersScratchSpace/Dan/diffPatch.txt
+Scheduled for add      developersScratchSpace/Dan/test2004_100.C
+Scheduled for add      developersScratchSpace/Dan/test2004_101.C
+Scheduled for add      developersScratchSpace/Dan/test2004_102.C
+Scheduled for add      developersScratchSpace/Dan/test2004_103.C
+Scheduled for add      developersScratchSpace/Dan/test2004_104.C
+Scheduled for add      developersScratchSpace/Dan/test2004_105.C
+Scheduled for add      developersScratchSpace/Dan/test2004_106.C
+Scheduled for add      developersScratchSpace/Dan/test2004_107.C
+Scheduled for add      developersScratchSpace/Dan/test2004_108.C
+Scheduled for add      developersScratchSpace/Dan/test2004_109.C
+Scheduled for add      developersScratchSpace/Dan/test2004_110.C
+Scheduled for add      developersScratchSpace/Dan/test2004_111.C
+Scheduled for add      developersScratchSpace/Dan/test2004_112.C
+Scheduled for add      developersScratchSpace/Dan/test2004_113.C
+Scheduled for add      developersScratchSpace/Dan/test2004_114.C
+Scheduled for add      developersScratchSpace/Dan/test2004_115.C
+Scheduled for add      developersScratchSpace/Dan/test2004_116.C
+Scheduled for add      developersScratchSpace/Dan/test2004_117.C
+Scheduled for add      developersScratchSpace/Dan/test2004_118.C
+Scheduled for add      developersScratchSpace/Dan/test2004_119.C
+Scheduled for add      developersScratchSpace/Dan/test2004_120.C
+Scheduled for add      developersScratchSpace/Dan/test2004_121.C
+Scheduled for add      developersScratchSpace/Dan/test2004_122.C
+Scheduled for add      developersScratchSpace/Dan/test2004_52.C
+Scheduled for add      developersScratchSpace/Dan/test2004_53.C
+Scheduled for add      developersScratchSpace/Dan/test2004_54.C
+Scheduled for add      developersScratchSpace/Dan/test2004_55.C
+Scheduled for add      developersScratchSpace/Dan/test2004_56.C
+Scheduled for add      developersScratchSpace/Dan/test2004_57.C
+Scheduled for add      developersScratchSpace/Dan/test2004_58.C
+Scheduled for add      developersScratchSpace/Dan/test2004_59.C
+Scheduled for add      developersScratchSpace/Dan/test2004_60.C
+Scheduled for add      developersScratchSpace/Dan/test2004_61.C
+Scheduled for add      developersScratchSpace/Dan/test2004_62.C
+Scheduled for add      developersScratchSpace/Dan/test2004_63.C
+Scheduled for add      developersScratchSpace/Dan/test2004_64.C
+Scheduled for add      developersScratchSpace/Dan/test2004_65.C
+Scheduled for add      developersScratchSpace/Dan/test2004_66.C
+Scheduled for add      developersScratchSpace/Dan/test2004_67.C
+Scheduled for add      developersScratchSpace/Dan/test2004_68.C
+Scheduled for add      developersScratchSpace/Dan/test2004_69.C
+Scheduled for add      developersScratchSpace/Dan/test2004_70.C
+Scheduled for add      developersScratchSpace/Dan/test2004_71.C
+Scheduled for add      developersScratchSpace/Dan/test2004_72.C
+Scheduled for add      developersScratchSpace/Dan/test2004_73.C
+Scheduled for add      developersScratchSpace/Dan/test2004_74.C
+Scheduled for add      developersScratchSpace/Dan/test2004_75.C
+Scheduled for add      developersScratchSpace/Dan/test2004_76.C
+Scheduled for add      developersScratchSpace/Dan/test2004_77.C
+Scheduled for add      developersScratchSpace/Dan/test2004_78.C
+Scheduled for add      developersScratchSpace/Dan/test2004_79.C
+Scheduled for add      developersScratchSpace/Dan/test2004_80.C
+Scheduled for add      developersScratchSpace/Dan/test2004_81.C
+Scheduled for add      developersScratchSpace/Dan/test2004_82.C
+Scheduled for add      developersScratchSpace/Dan/test2004_83.C
+Scheduled for add      developersScratchSpace/Dan/test2004_84.C
+Scheduled for add      developersScratchSpace/Dan/test2004_85.C
+Scheduled for add      developersScratchSpace/Dan/test2004_86.C
+Scheduled for add      developersScratchSpace/Dan/test2004_87.C
+Scheduled for add      developersScratchSpace/Dan/test2004_88.C
+Scheduled for add      developersScratchSpace/Dan/test2004_89.C
+Scheduled for add      developersScratchSpace/Dan/test2004_90.C
+Scheduled for add      developersScratchSpace/Dan/test2004_91.C
+Scheduled for add      developersScratchSpace/Dan/test2004_92.C
+Scheduled for add      developersScratchSpace/Dan/test2004_93.C
+Scheduled for add      developersScratchSpace/Dan/test2004_94.C
+Scheduled for add      developersScratchSpace/Dan/test2004_95.C
+Scheduled for add      developersScratchSpace/Dan/test2004_96.C
+Scheduled for add      developersScratchSpace/Dan/test2004_97.C
+Scheduled for add      developersScratchSpace/Dan/test2004_98.C
+Scheduled for add      developersScratchSpace/Dan/test2004_99.C
+Scheduled for add      docs/Rose/Jeremiah-docs.bib
+Scheduled for add      docs/Rose/README
+Scheduled for add      docs/Rose/fd-docs.tex
+Scheduled for add      docs/Rose/pre-docs.tex
+Scheduled for add      docs/Rose/ProgramAnalysis/db-docs.tex
+Scheduled for add      docs/testDoxygen/HowToDocumentROSE.docs
+Scheduled for add      docs/testDoxygen/Makefile.am
+Scheduled for add      docs/testDoxygen/Makefile.in
+Scheduled for add      docs/testDoxygen/SgBinaryOp.docs
+Scheduled for add      docs/testDoxygen/SgBreakStatement.docs
+Scheduled for add      docs/testDoxygen/SgClassDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgClassSymbol.docs
+Scheduled for add      docs/testDoxygen/SgDeclarationStatement.docs
+Scheduled for add      docs/testDoxygen/SgExpression.docs
+Scheduled for add      docs/testDoxygen/SgFunctionDeclaration.docs
+Scheduled for add      docs/testDoxygen/SgInitializedName.docs
+Scheduled for add      docs/testDoxygen/SgLocatedNode.docs
+Scheduled for add      docs/testDoxygen/SgNode.docs
+Scheduled for add      docs/testDoxygen/SgStatement.docs
+Scheduled for add      docs/testDoxygen/SgSymbol.docs
+Scheduled for add      docs/testDoxygen/SgThrowOp.docs
+Scheduled for add      docs/testDoxygen/SgUnaryOp.docs
+Scheduled for add      docs/testDoxygen/SharedNodes.docs
+Scheduled for add      docs/testDoxygen/doc_example1.docs
+Scheduled for add      docs/testDoxygen/example1.C
+Scheduled for add      docs/testDoxygen/example1_test.C
+Scheduled for add      docs/testDoxygen/exampleCode.C
+Scheduled for add      docs/testDoxygen/old_test.cfg.in
+Scheduled for add      docs/testDoxygen/test.cfg.in
+Scheduled for add      docs/testDoxygen/updated_test.cfg.in
+Scheduled for add      projects/AtermTranslation/Makefile.am
+Scheduled for add      projects/AtermTranslation/code-pretty.trm
+Scheduled for add      projects/AtermTranslation/code.trm
+Scheduled for add      projects/AtermTranslation/codeout-pretty.trm
+Scheduled for add      projects/AtermTranslation/codeout.trm
+Scheduled for add      projects/AtermTranslation/foo.C
+Scheduled for add      projects/AtermTranslation/foo2.C
+Scheduled for add      projects/AtermTranslation/foo2.c
+Scheduled for add      projects/AtermTranslation/foo3.C
+Scheduled for add      projects/AtermTranslation/foo4.C
+Scheduled for add      projects/AtermTranslation/foo5.C
+Scheduled for add      projects/AtermTranslation/foo6.C
+Scheduled for add      projects/AtermTranslation/foo7.C
+Scheduled for add      projects/AtermTranslation/foo8.C
+Scheduled for add      projects/AtermTranslation/strategoToTerm.C
+Scheduled for add      projects/AtermTranslation/strtest1.c
+Scheduled for add      projects/AtermTranslation/strtest1.str
+Scheduled for add      projects/AtermTranslation/termToStratego.C
+Scheduled for add      projects/checkPointExample/Makefile.am
+Scheduled for add      projects/checkPointExample/eigenvalue.C
+Scheduled for add      projects/checkPointExample/eigenvalue.h
+Scheduled for add      projects/checkPointExample/interchanged_matvec.C
+Scheduled for add      projects/checkPointExample/main.C
+Scheduled for add      projects/checkPointExample/matvec.h
+Scheduled for add      projects/checkPointExample/simple_matvec.C
+Scheduled for add      projects/dataBase/brianWhiteInfo.txt
+Scheduled for add      projects/dataBase/testEdges.C
+Scheduled for add      projects/simpleCallGraphAnalysis/Makefile.am
+Scheduled for add      projects/simpleCallGraphAnalysis/callGraph.C
+Scheduled for add      projects/simpleCallGraphAnalysis/callGraphInputTest.C
+Scheduled for add      projects/simpleCallGraphAnalysis/writeCallGraph.C
+Scheduled for add      proposals/New_Sage_Interface.txt
+Scheduled for add      proposals/SageInterfaceRenaming.txt
+Scheduled for add      proposals/TODO.txt
+Scheduled for add      proposals/checkPoint.txt
+Scheduled for add      proposals/deprecatedFunctions.txt
+Scheduled for add      proposals/nameQualification.txt
+Scheduled for add      proposals/feedbackFromUsers/JeremiahWillcock-7-23-2004.txt
+Scheduled for add      scripts/generate-gnu-to-edg-headerfile-diff.sh
+Scheduled for add      src/frontend/SageIII/preproc.C
+Scheduled for add      src/frontend/SageIII/sageSupport.C
+Scheduled for add      src/frontend/SageIII/sageSupport.h
+Scheduled for add      src/frontend/SageIII/docs/HowToDocumentROSE.docs
+Scheduled for add      src/frontend/SageIII/docs/SgBinaryOp.docs
+Scheduled for add      src/frontend/SageIII/docs/SgBreakStatement.docs
+Scheduled for add      src/frontend/SageIII/docs/SgClassDeclaration.docs
+Scheduled for add      src/frontend/SageIII/docs/SgClassSymbol.docs
+Scheduled for add      src/frontend/SageIII/docs/SgDeclarationStatement.docs
+Scheduled for add      src/frontend/SageIII/docs/SgExpression.docs
+Scheduled for add      src/frontend/SageIII/docs/SgFunctionDeclaration.docs
+Scheduled for add      src/frontend/SageIII/docs/SgInitializedName.docs
+Scheduled for add      src/frontend/SageIII/docs/SgLocatedNode.docs
+Scheduled for add      src/frontend/SageIII/docs/SgNode.docs
+Scheduled for add      src/frontend/SageIII/docs/SgStatement.docs
+Scheduled for add      src/frontend/SageIII/docs/SgSymbol.docs
+Scheduled for add      src/frontend/SageIII/docs/SgThrowOp.docs
+Scheduled for add      src/frontend/SageIII/docs/SgUnaryOp.docs
+Scheduled for add      src/frontend/SageIII/docs/SharedNodes.docs
+Scheduled for add      src/frontend/SageIII/docs/doc_example1.docs
+Scheduled for add      src/midend/astDiagnostics/AstConsistencyTests.C
+Scheduled for add      src/midend/astDiagnostics/AstConsistencyTests.h
+Scheduled for add      src/midend/astDiagnostics/AstDiagnostics.docs
+Scheduled for add      src/midend/astDiagnostics/AstDiagnostics.h
+Scheduled for add      src/midend/astDiagnostics/AstStatistics.C
+Scheduled for add      src/midend/astDiagnostics/AstStatistics.h
+Scheduled for add      src/midend/astDiagnostics/AstWarnings.C
+Scheduled for add      src/midend/astDiagnostics/AstWarnings.h
+Scheduled for add      src/midend/astDiagnostics/Makefile.am
+Scheduled for add      src/midend/astInlining/inliner-docs.tex
+Scheduled for add      src/midend/astOutlining/Makefile.am
+Scheduled for add      src/midend/astOutlining/RoseOutliner.C
+Scheduled for add      src/midend/astOutlining/RoseOutliner.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/Makefile.am
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/Makefile.original
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/README
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/action.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/action.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/actionchanger.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/actionchanger.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/adaptor_statistics.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/adaptor_statistics.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/analyze.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/analyze.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/ann.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/annotations.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/annotations.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/annvariable.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/annvariable.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/bdwy.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/bdwy_liveness.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/bdwy_liveness.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/broadway.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/broadway_expr.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/broadway_expr.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/callingcontext.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/callingcontext.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/constantprop.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/cpattern.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/cpattern.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/diagnostic.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/diagnostic.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/enum_property.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/enum_property.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/language.l
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/language.y
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/localstl.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/pointerrule.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/pointerrule.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/procedure.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/procedure.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/property.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/property.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/report.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/report.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/rule.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/rule.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/set_property.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/set_property.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/structure.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/structure.h
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/unification_ann.cc
+Scheduled for add      src/midend/programAnalysis/annotationLanguageParser/unification_ann.h
+Scheduled for add      src/midend/programAnalysis/sideEffectAnalysis/Makefile.am
+Scheduled for add      src/midend/programAnalysis/sideEffectAnalysis/mysql.test
+Scheduled for add      src/midend/programAnalysis/sideEffectAnalysis/sideEffect.C
+Scheduled for add      src/midend/programAnalysis/sideEffectAnalysis/sideEffect.h
+Scheduled for add      src/roseExtensions/databaseConnection/DatabaseGraph.h
+Scheduled for add      src/roseExtensions/databaseConnection/GlobalDatabaseConnection.C.in
+Scheduled for add      src/roseExtensions/databaseConnection/GlobalDatabaseConnection.h
+Scheduled for add      src/roseExtensions/databaseConnection/Makefile.am.original
+Scheduled for add      src/roseExtensions/databaseConnection/TableAccess.C
+Scheduled for add      src/roseExtensions/databaseConnection/TableAccess.h
+Scheduled for add      src/roseExtensions/databaseConnection/TableAccessMacros.h
+Scheduled for add      src/roseExtensions/databaseConnection/TableDefinitions.h
+Scheduled for add      src/roseExtensions/databaseConnection/brianWhiteInfo.txt
+Scheduled for add      src/roseExtensions/databaseConnection/check_database.C
+Scheduled for add      src/roseExtensions/databaseConnection/createTableAccessMacros.pl
+Scheduled for add      src/roseExtensions/databaseConnection/simplecallgraph_testprogram.C
+Scheduled for add      src/roseExtensions/databaseConnection/testDataBase.C
+Scheduled for add      src/roseExtensions/databaseConnection/testEdges.C
+Scheduled for add      tests/roseTests/astInliningTests/pass20.C
+Scheduled for add      tests/roseTests/astInliningTests/pass21.C
+Scheduled for add      tests/roseTests/astOutliningTests/Makefile.am
+Scheduled for add      tests/roseTests/astOutliningTests/VariableDeclaration_test.C
+Scheduled for add      tests/roseTests/astOutliningTests/class.C
+Scheduled for add      tests/roseTests/astOutliningTests/crash1.C
+Scheduled for add      tests/roseTests/astOutliningTests/driver_rose_outliner.C
+Scheduled for add      tests/roseTests/astOutliningTests/nested_pragmas.C
+Scheduled for add      tests/roseTests/astOutliningTests/no_main.C
+Scheduled for add      tests/roseTests/astOutliningTests/return.C
+Scheduled for add      tests/roseTests/astOutliningTests/simpleExample.C
+Scheduled for add      tests/roseTests/astOutliningTests/simpleExample2.C
+Scheduled for add      tests/roseTests/astOutliningTests/template_class.C
+Scheduled for add      tests/roseTests/astOutliningTests/template_function.C
+Scheduled for add      tests/roseTests/astOutliningTests/template_member.C
+Scheduled for add      tests/roseTests/astOutliningTests/test.C
+Scheduled for add      tests/roseTests/astOutliningTests/test1.C
+Scheduled for add      tests/roseTests/astOutliningTests/variables.C
+Scheduled for add      tests/roseTests/programAnalysisTests/AnnotationLanguageParserTest.C
+Scheduled for add      tests/roseTests/programAnalysisTests/annotationLanguageParserInputFile.ann
+Scheduled for add      tests/roseTests/programAnalysisTests/trustedAnnotationOutput
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/Makefile.am
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/Makefile.original
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testClasses1.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testClasses2.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testClasses3.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testGlobal1.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testGlobal2.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testLoop.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testPtr1.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testPtr2.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testRef.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testShadow.C
+Scheduled for add      tests/roseTests/programAnalysisTests/sideEffectAnalysisTests/testSideEffect.C
********* Files Scheduled to be removed *********
-Scheduled for removal  developersScratchSpace/Dan/Makefile.am~
-Scheduled for removal  developersScratchSpace/Dan/beata.C~
-Scheduled for removal  developersScratchSpace/Dan/gccOptions.txt~
-Scheduled for removal  developersScratchSpace/Dan/test.ps
-Scheduled for removal  developersScratchSpace/Dan/test2004_21.c~
-Scheduled for removal  developersScratchSpace/Dan/test2004_40.h~
-Scheduled for removal  developersScratchSpace/Dan/test2004_43.C~
-Scheduled for removal  developersScratchSpace/Dan/test2004_44.C~
-Scheduled for removal  developersScratchSpace/Dan/test2004_45.C~
-Scheduled for removal  developersScratchSpace/Dan/testAnsiC.c~
-Scheduled for removal  developersScratchSpace/Dan/testNotEqualBut
-Scheduled for removal  docs/Rose/NEW_ROSE.ps
-Scheduled for removal  docs/Rose/UserManual.ps
-Scheduled for removal  src/ROSETTA/src/Makefile.am~
-Scheduled for removal  src/midend/astProcessing/AstStatistics.C
-Scheduled for removal  src/midend/astProcessing/AstStatistics.h
-Scheduled for removal  src/midend/astProcessing/AstTests.C
-Scheduled for removal  src/midend/astProcessing/AstTests.h
********* WARNINGS *********
********* ERRORS *********
	

	
2004-09-08 Markus Schordan 0.7.9c

	* updated documentation
	- added AstAttributeMechanism and AstAttribute to Module Ast Processing.
	- added documentation to AstAttributeMechanism
	- updated documentation of accessing AstAttribute in user manual
	- updated documentation of accessing AstAttribute in example 
	  'printLoopInfo'
	- added class Ast to module AstProcessing
	
	* added a first version of Ast::iterator (forward iterator) 
	  it allows iterating on the AST by using the STL iterator
	  pattern. Nodes are visited in pre-order, encountered null
	  pointers are *not* returned.
	  (This class was available but not finished nor tested. This is
	  still work in progress, only use the public interface!)

	
********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
GNU Make version 3.79.1
g++ (GCC) 3.3
gcc (GCC) 3.3
doxygen 1.2.14
dot version 1.10 (Mon Feb  9 18:00:36 CET 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   developersScratchSpace/Markus/mscomp.C
>Locally modified   developersScratchSpace/Markus/onefileonly.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.h
>Locally modified   src/rose.h
>Locally modified   src/3rdPartyLibraries/MSTL/AttributeMechanism.h
>Locally modified   src/midend/astProcessing/Ast.C
>Locally modified   src/midend/astProcessing/Ast.h
>Locally modified   src/midend/astProcessing/AstAttributeMechanism.h
>Locally modified   src/midend/astProcessing/AstProcessing.docs
>Locally modified   src/midend/astProcessing/AstSuccessorsSelectors.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********
	
2004-08-26 Markus Schordan 0.7.9b
	* fix for IO problem in src/midend/astUtil/annotation/AnnotIO.C
	* reactivated 
	  - project/arrayOptimization
	  - project/containerParallelizer	              

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
GNU Make version 3.79.1
g++ (GCC) 3.3
gcc (GCC) 3.3
doxygen 1.2.14
dot version 1.10 (Mon Feb  9 18:00:36 CET 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/README
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.h
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/README
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/MyTraversal.C
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/MyTraversal.h
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/README
>Locally modified   exampleTranslators/documentedExamples/astProcessingExamples/printVars/printVars.C
>Locally modified   projects/Makefile.am
>Locally modified   src/midend/astUtil/annotation/AnnotIO.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
-Scheduled for removal  projects/Makefile.am~
********* WARNINGS *********
********* ERRORS *********
	
2004-08-20 Markus Schordan 0.7.9a
	* added new function 'defaultSynthesizedAttribute'
	  to AstBottomUpProcessing and AstTopDownBottomUpProcessing classes. 
	  Allows to provide a default value for synthesized attributes of 
	  primitive type (int, bool, etc.)
	* added documentation for AstProcessing classes in Reference Manual
	* fixed, changed, updated Module AstProcessing in Reference Manual
	* updated AstProcessing in User Manual
	* added two fully documented examples to
	  ROSE/exampleTranslators/documentedExamples/astProcessingExamples
	  - printVars (demonstrates use of AstSimpleProcessing)
	  - printLoopInfo (demonstrates use of AstTopDownBottomUpProcessing
	    with attributes of primitive type (unsigned int),
	    pdf generation, dot generation, and use of AST node attributes
	* renamed AstProcessingExamples to astProcessingExamples
	* updated regex in cvschk and added make,gcc versions
	* deactivated
	  - project/arrayOptimization
	  - project/containerParallelizer
	  (in configure.in and ROSE/projects/Makefile.am)
	  because code is broken on new checked out version on our machines
	  it does not fail on my LLNL machine but produces an 
	  error message: Error: cannot find member function floatArray::length
                         Error: cannot find member function floatArray::elem

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
GNU Make version 3.79.1
g++ (GCC) 3.3
gcc (GCC) 3.3
doxygen 1.2.14
dot version 1.10 (Mon Feb  9 18:00:36 CET 2004)
TeX (Web2C 7.3.1) 3.14159
Original LaTeX2HTML Version 2002 (1.62)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   README_CHECKIN
>Locally modified   configure.in
>Locally modified   docs/Rose/AstProcessing/AstProcessing.tex
>Locally modified   exampleTranslators/documentedExamples/Makefile.am
>Locally modified   projects/Makefile.am
>Locally modified   scripts/cvschk
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/midend/astProcessing/AstProcessing.C
>Locally modified   src/midend/astProcessing/AstProcessing.docs
>Locally modified   src/midend/astProcessing/AstProcessing.h
>Locally modified   src/midend/astProcessing/AstSimpleProcessing.C
>Locally modified   src/midend/astProcessing/AstSimpleProcessing.h
>Locally modified   src/midend/astProcessing/AstTraversal.C
>Locally modified   src/midend/astProcessing/AstTraversal.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/README
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.C
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/LoopNestingInfoProcessing.h
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/README
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/printLoopInfo.C
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printLoopInfo/testInput1.C
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/MyTraversal.C
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/MyTraversal.h
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/README
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/printVars.C
+Scheduled for add      exampleTranslators/documentedExamples/astProcessingExamples/printVars/testInput1.C
********* Files Scheduled to be removed *********
-Scheduled for removal  exampleTranslators/Makefile.in
-Scheduled for removal  exampleTranslators/documentedExamples/AstProcessingExamples/Makefile.am
-Scheduled for removal  exampleTranslators/documentedExamples/AstProcessingExamples/identityTranslator.C
********* WARNINGS *********
********* ERRORS *********

	
2004-8-11 Qing Yi 0.7.8a
 . Added Jeremiah Willcock's implementation of both finite-differencing (strengh reduction) transformation and partial redundancy eliminiation transformation, in src/midend/programTransformation directory.
 . Added Jeremiah's tests for his transformations. 
 . Added tests for projects/arrayOptimization and projects/containerParallelizer
 . Added dgemm.C to tests/rosetests/loopProcessingTest
 . Restored broken code in astUtil/astInterface due to inconsistencies with recent changes in Sage.
 . Added functionalities in astUtil/annotation
 . Removed relative directory names in "include" directives
 . Fixed bugs

********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   exampleTranslators/Makefile.in
>Locally modified   projects/arrayOptimization/ArrayAnnot.C
>Locally modified   projects/arrayOptimization/ArrayAnnot.h
>Locally modified   projects/arrayOptimization/ArrayInterface.C
>Locally modified   projects/arrayOptimization/ArrayInterface.h
>Locally modified   projects/arrayOptimization/ArrayProcessor.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.C
>Locally modified   projects/arrayOptimization/ArrayRewrite.h
>Locally modified   projects/arrayOptimization/Makefile.am
>Locally modified   projects/containerParallelizer/Makefile.am
>Locally modified   projects/containerParallelizer/CPAnalysis/ContainerAnalyzer.C
>Locally modified   projects/containerParallelizer/CPAnalysis/Makefile.am
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   projects/containerParallelizer/CPAnalysis/TestParallelLoop.h
>Locally modified   src/Makefile.am
>Locally modified   src/frontend/SageIII/AstFixes.C
>Locally modified   src/midend/Makefile.am
>Locally modified   src/midend/astInlining/inliner.h
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astInlining/inlinerSupport.h
>Locally modified   src/midend/astInlining/isPotentiallyModified.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.C
>Locally modified   src/midend/astInlining/replaceExpressionWithStatement.h
>Locally modified   src/midend/astInlining/typeTraits.C
>Locally modified   src/midend/astInlining/typeTraits.h
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.C
>Locally modified   src/midend/astUtil/annotation/AnnotIO.C
>Locally modified   src/midend/astUtil/annotation/AnnotIO.h
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.C
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/CPPAstInterface.C
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.C
>Locally modified   src/midend/loopProcessing/LoopTransformInterface.h
>Locally modified   src/midend/loopProcessing/Makefile.am
>Locally modified   src/midend/loopProcessing/computation/LoopInfo.h
>Locally modified   src/midend/loopProcessing/computation/LoopTree.C
>Locally modified   src/midend/loopProcessing/computation/LoopTree.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeBuild.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDepComp.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeDummyNode.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeLocality.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeObserver.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeShadow.C
>Locally modified   src/midend/loopProcessing/computation/LoopTreeShadow.h
>Locally modified   src/midend/loopProcessing/computation/LoopTreeTransform.C
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/DepGraph.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.C
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphBuild.h
>Locally modified   src/midend/loopProcessing/depGraph/DepGraphTransform.C
>Locally modified   src/midend/loopProcessing/depGraph/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.C
>Locally modified   src/midend/loopProcessing/depGraph/TransDepGraph.h
>Locally modified   src/midend/loopProcessing/depInfo/DepEDD.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnal.h
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoAnalImpl.C
>Locally modified   src/midend/loopProcessing/depInfo/DepInfoSet.h
>Locally modified   src/midend/loopProcessing/depInfo/DepRel.h
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.C
>Locally modified   src/midend/loopProcessing/depInfo/DomainInfo.h
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.C
>Locally modified   src/midend/loopProcessing/driver/BlockingAnal.h
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.C
>Locally modified   src/midend/loopProcessing/driver/LoopTransformOptions.h
>Locally modified   src/midend/loopProcessing/driver/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/TransformAstTree.C
>Locally modified   src/midend/loopProcessing/driver/TransformAstTree.h
>Locally modified   src/midend/loopProcessing/driver/TransformComputation.C
>Locally modified   src/midend/loopProcessing/driver/TypedFusionImpl.C
>Locally modified   src/midend/loopProcessing/slicing/CompSlice.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   src/midend/loopProcessing/slicing/CompSliceDepGraph.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceImpl.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceObserver.h
>Locally modified   src/midend/loopProcessing/slicing/CompSliceRegistry.h
>Locally modified   src/midend/loopProcessing/slicing/DependenceHoisting.C
>Locally modified   src/midend/loopProcessing/slicing/Makefile.am
>Locally modified   src/midend/programAnalysis/CFG/CFG_OA.C
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/CFG/Makefile.am
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.C
>Locally modified   src/util/graphs/BaseGraphCreate.h
>Locally modified   src/util/graphs/BaseGraphTemp.h
>Locally modified   src/util/graphs/DGBaseGraphImpl.h
>Locally modified   src/util/graphs/GraphGroup.h
>Locally modified   src/util/graphs/GraphScope.h
>Locally modified   src/util/graphs/GraphTemplate.h
>Locally modified   src/util/graphs/IDGraphCreate.h
>Locally modified   src/util/graphs/IDGraphCreateTemp.h
>Locally modified   src/util/graphs/SCCAnalysis.C
>Locally modified   src/util/graphs/SCCAnalysis.h
>Locally modified   src/util/graphs/TransAnalysis.C
>Locally modified   src/util/graphs/TransAnalysis.h
>Locally modified   src/util/support/Adaptors.h
>Locally modified   src/util/support/DAG.C
>Locally modified   src/util/support/DAG.h
>Locally modified   src/util/support/DirectedGraph.C
>Locally modified   src/util/support/DirectedGraph.h
>Locally modified   src/util/support/TreeImpl.h
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/LoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/TestLoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/lufac.C
>Locally modified   tests/roseTests/loopProcessingTests/mm.C
>Locally modified   tests/roseTests/programAnalysisTests/CFGTest.C
>Locally modified   tests/roseTests/programAnalysisTests/DataFlowTest.C
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/StmtRefTest.C
>Locally modified   tests/roseTests/programAnalysisTests/testfile1.c.cfg
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      projects/arrayOptimization/test/Index.annot
+Scheduled for add      projects/arrayOptimization/test/Makefile.am
+Scheduled for add      projects/arrayOptimization/test/TestDriver
+Scheduled for add      projects/arrayOptimization/test/floatArray.annot
+Scheduled for add      projects/arrayOptimization/test/funcs.annot
+Scheduled for add      projects/arrayOptimization/test/interp1.C
+Scheduled for add      projects/arrayOptimization/test/redBlack1.C
+Scheduled for add      projects/arrayOptimization/test/rose_interp1.C.save
+Scheduled for add      projects/arrayOptimization/test/rose_redBlack1.C.save
+Scheduled for add      projects/arrayOptimization/test/simpleA++.h
+Scheduled for add      projects/containerParallelizer/test/Container.annot
+Scheduled for add      projects/containerParallelizer/test/Makefile.am
+Scheduled for add      projects/containerParallelizer/test/TestDriver
+Scheduled for add      projects/containerParallelizer/test/UserDefList.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList.C.out.save
+Scheduled for add      projects/containerParallelizer/test/UserDefList.h
+Scheduled for add      projects/containerParallelizer/test/UserDefList2.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList2.C.out.save
+Scheduled for add      projects/containerParallelizer/test/UserDefList2b.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList2b.C.out.save
+Scheduled for add      projects/containerParallelizer/test/UserDefList2c.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList2c.C.out.save
+Scheduled for add      projects/containerParallelizer/test/UserDefList2d.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList2d.C.out.save
+Scheduled for add      projects/containerParallelizer/test/UserDefList3.C
+Scheduled for add      projects/containerParallelizer/test/UserDefList3.C.out.save
+Scheduled for add      src/midend/programTransformation/Makefile.am
+Scheduled for add      src/midend/programTransformation/finiteDifferencing/Makefile.am
+Scheduled for add      src/midend/programTransformation/finiteDifferencing/finiteDifferencing.C
+Scheduled for add      src/midend/programTransformation/finiteDifferencing/finiteDifferencing.h
+Scheduled for add      src/midend/programTransformation/finiteDifferencing/patternRewrite.C
+Scheduled for add      src/midend/programTransformation/finiteDifferencing/patternRewrite.h
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/Makefile.am
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/controlFlowGraph.C
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/controlFlowGraph.h
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/expressionTreeEqual.C
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/expressionTreeEqual.h
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/pre.C
+Scheduled for add      src/midend/programTransformation/partialRedundancyElimination/pre.h
+Scheduled for add      tests/roseTests/astInliningTests/pass18.C
+Scheduled for add      tests/roseTests/astInliningTests/pass19.C
+Scheduled for add      tests/roseTests/loopProcessingTests/dgemm.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_dgemm.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_lufac.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_mm.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_rmatmult3.C.save
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_tridvpk.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/Makefile.am
+Scheduled for add      tests/roseTests/programTransformationTests/TestDriver
+Scheduled for add      tests/roseTests/programTransformationTests/finiteDifferencingDemo.C
+Scheduled for add      tests/roseTests/programTransformationTests/finiteDifferencingTest.C
+Scheduled for add      tests/roseTests/programTransformationTests/finitediff_test1.C
+Scheduled for add      tests/roseTests/programTransformationTests/finitediff_test2.C
+Scheduled for add      tests/roseTests/programTransformationTests/finitediff_test3.C
+Scheduled for add      tests/roseTests/programTransformationTests/pass1.C
+Scheduled for add      tests/roseTests/programTransformationTests/pass2.C
+Scheduled for add      tests/roseTests/programTransformationTests/pass3.C
+Scheduled for add      tests/roseTests/programTransformationTests/patternRewriteTest.C
+Scheduled for add      tests/roseTests/programTransformationTests/preTest.C
+Scheduled for add      tests/roseTests/programTransformationTests/rewrite_test1.C
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test1.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test2.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_finitediff_test3.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass1.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass2.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_pass3.C.save
+Scheduled for add      tests/roseTests/programTransformationTests/rose_rewrite_test1.C.save
********* Files Scheduled to be removed *********
-Scheduled for removal  projects/containerParallelizer/Container.annot
-Scheduled for removal  projects/containerParallelizer/Function.annot
-Scheduled for removal  projects/containerParallelizer/UserDefList.C
-Scheduled for removal  projects/containerParallelizer/UserDefList.h
-Scheduled for removal  projects/containerParallelizer/UserDefList2.C
-Scheduled for removal  projects/containerParallelizer/UserDefList2b.C
-Scheduled for removal  projects/containerParallelizer/UserDefList2c.C
-Scheduled for removal  projects/containerParallelizer/UserDefList2d.C
-Scheduled for removal  projects/containerParallelizer/UserDefList3.C
-Scheduled for removal  tests/roseTests/loopProcessingTests/rose_lufac.C
-Scheduled for removal  tests/roseTests/loopProcessingTests/rose_mm.C
-Scheduled for removal  tests/roseTests/loopProcessingTests/rose_rmatmult3.C
-Scheduled for removal  tests/roseTests/loopProcessingTests/rose_tridvpk.C
-Scheduled for removal  src/midend/loopProcessing/HackTemplate.C
********* WARNINGS *********
********* ERRORS *********

	
2004-7-22 Dan Quinlan 0.7.7a
	
	* Fixed ROSE to compile in the source tree (in case anyone wants
	  to do that).  Fix consited to two parts. One suggested by
	  Jeremiah (suggested the fix to ROSE/docs/Rose/Makefile.am). And
	  the other required getting configure script to compute the
	  source tree location correctly and fixing up the substitution
	  in the ROSE/config/support-doxygen.m4 macro.

	* Fixed use of relative path with configure script (used to 
	  result in an error when the documentation was built) The 
	  computation of the correct source tree location also
	  now permits the configure script to be called using a relative
	  path. Previously the configure script had been required to be
	  called using an absolute path (so that the doxygen required 
	  paths could be generated properly).

	* Fixed uninitialized variables in SgFile::initialization() 
	  function. Caused bug in use of -o option on translator command 
	  line.

	* Fixed ROSE so that "make distcheck" works now.  Previously only
	  "gmake distcheck" worked (never undertood why and I don't know
	  just what I fixed to make to all work in a sane way now). 
	  "make dist" also works, but I think that that always worked.

	* Fixed the EDG/Sage connection code to correctly include a valid 
	  declaration pointer to the SgTypedefStatment constructor (where
	  one is available). This was previously a NULL pointer (at least
	  as I understand it).  As a result of this fix, because the
	  declaration pointer is no longer NULL, the code to traverse
	  the declaration in the SgTypedefStatement is not traversed,
	  which results in a cycle in the traversal.  So I have change the
	  specification of the traversal (in the statement.C file) from
	  DEF_TRAVERSAL to NO_TRAVERSAL.  The result is the same since the
	  value of the declaration in the SgTypedefStatement was
	  previously NULL (I believe it was always NULL).  The following
	  code demonstrated the error:
	  "typedef struct Atag4 { typedef Atag4 Btag; } A4;".
	  This does not really fix the problem, I think that it is just 
	  that we have the valid pointer in the AST finally.  The
	  traversal still has to be fixed to permit the traversal of the
	  declaration, but that traversal will depend on if it has been
	  previously traversed, and we don't use visit flags any more to
	  make that trivial (the visit flags caused other problems so we
	  are happy to be clear of them, so to speak). It is not clear
	  how to fixup the traversal to visit the islands, but since they
	  were not previously traversed that bug remains.  

	* The traversal of types is now fairly far along, but incomplete.
	  The appraoch worked out with Markus, is that I will implement
	  a traversal using nested traversals to traverse all types (and
	  islands of cod not previously visited, which is really just the
	  traversal of the definition in the SgTypedefStatement and a
	  related location for the only other sort of islands (see
	  proposals directory for details on the island problem).
	  I have added the query on types to the AstTests.C file, but
	  commented it out so that I can prepare this checkin.  This
	  work will be continued in the next release.

	* Switched to use of shared libraries withn ROSE/src.  ROSE
	  currently has so many directories and due to the way automake
	  works each directory has it's own library.  There are still librose.so
	  and libedg.so libraries in the top level ROSE/src directory.
	  But the building of the librose.so and libedg.so libraries
	  is so time consuming to build, even though they speed up the 
	  linking process.  A more efficient development process 
	  (mostly effective for ROSE developers) is provided which 
	  permits the use of the *.so libraries build in each of the
	  31 ROSE libraries (each its own subdirectory within ROSE/src).
	  If installed, all the libraries are put into the libs directory.
	  The fastest link process is to use the libraries separately, but
	  it is not significantly slower to just link to -lrose and -ledg
	  (as long as it is done dynamically).  The quickest development
	  environment is to use the separate dynamic libraries and just
	  compile the ROSE subdirectory where the code has been modified.
	  This development environment is so fast and comfortable that 
	  it has lead to a switch to dynamic libraries through out ROSE.
	  Each directory now builds its own shared library (same thing as
	  a dynamic library) instead of a static library.  This only
	  effects ROSE developers in general, but user who previously
	  use the static libraries should switch to using dynamic
	  libraries to enjoy a quicker link time and to generate
	  significantly smaller executables.

	* Cleaned up all Makefile.am files to make there handling
	  consistant.

	* Added a few more FAQ questions and at least a few answers.

	* Reorganized and updated the GettingStarted chapter of the ROSE
	  documentation.

	* Fixed
	    ROSE/exampleTranslators/documentedExamples/simpleTranslatorExamples/AstTraversalTranslator.C
	  as suggested by Alin.

	* Fixed up other examples in
	    ROSE/exampleTranslators/documentedExamples/simpleTranslatorExamples
	  to be more current with suggested use of ROSE (more modern
	  interface).

	* Updated ROSE/scripts/configure_with_SQL to show how to configure
	  ROSE to use SQL.
	 
	* Commented out test in ROSE/tests/roseTests/programAnalysisTests.
	  Need to work with Qing to see what the problem is here.

	* Commented out follwoing line in
	    ROSE/src/midend/programAnalysis/CFG/Makefile.am
	  which causes make distcheck to fail.  Need to check with Qing
	  about this problem.
	       # DQ (7/23/2004): Can't find this file anywhere???
	       # EXTRA_DIST = cfgtestfile.c
	

	* Fixed src/roseSupport/templateSupport.C where several asserts
	  prevented the correct execution of a translator when executed
	  with empty commandline (no commandline arguments, trival case).
	  Behavior no matches most compilers, includeing g++.

	* Added support for "*.cpp" suffix as alternative to "*.C".
	  Still need to support "*.cc".
	 
	* Added Jeremiah Willcock's modification to skip renaming of
	  global variables in the inliner.
	
	
********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   build
>Locally modified   configure.in
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/support-doxygen.m4
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Markus/Makefile.am
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/introduction.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/usingRose.tex
>Locally modified   exampleTranslators/Makefile.in
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/AstTraversalTranslator.C
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/identityTranslator.C
>Locally modified   proposals/StudentWork.txt
>Locally modified   scripts/configure_with_SQL
>Locally modified   src/Makefile.am
>Locally modified   src/3rdPartyLibraries/Makefile.am
>Locally modified   src/3rdPartyLibraries/MSTL/Makefile.am
>Locally modified   src/3rdPartyLibraries/PDFLibrary/Makefile.am
>Locally modified   src/3rdPartyLibraries/coco/Makefile.am
>Locally modified   src/3rdPartyLibraries/coco/cplus2/Makefile.am
>Locally modified   src/3rdPartyLibraries/coco/sources/Makefile.am
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/src/Makefile.am
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparse_type.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/frontend/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/SageIII/AstFixes.C
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/midend/astInlining/Makefile.am
>Locally modified   src/midend/astInlining/inlinerSupport.C
>Locally modified   src/midend/astProcessing/AgProcessing.h
>Locally modified   src/midend/astProcessing/AstTests.C
>Locally modified   src/midend/astProcessing/Makefile.am
>Locally modified   src/midend/astQuery/Makefile.am
>Locally modified   src/midend/astQuery/nodeQuery.C
>Locally modified   src/midend/astQuery/nodeQuery.h
>Locally modified   src/midend/astRewriteMechanism/Makefile.am
>Locally modified   src/midend/astUtil/Makefile.am
>Locally modified   src/midend/astUtil/annotation/Makefile.am
>Locally modified   src/midend/astUtil/astInterface/Makefile.am
>Locally modified   src/midend/astUtil/astSupport/Makefile.am
>Locally modified   src/midend/astUtil/symbolicVal/Makefile.am
>Locally modified   src/midend/loopProcessing/Makefile.am
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/Makefile.am
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/Makefile.am
>Locally modified   src/midend/loopProcessing/slicing/Makefile.am
>Locally modified   src/midend/programAnalysis/CFG/Makefile.am
>Locally modified   src/midend/programAnalysis/OAWrap/Makefile.am
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/valuePropagation/Makefile.am
>Locally modified   src/roseSupport/Makefile.am
>Locally modified   src/roseSupport/templateSupport.C
>Locally modified   src/util/Makefile.am
>Locally modified   src/util/commandlineProcessing/Makefile.am
>Locally modified   src/util/graphs/Makefile.am
>Locally modified   src/util/stringSupport/Makefile.am
>Locally modified   src/util/support/Makefile.am
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/Makefile.am
>Locally modified   tests/roseTests/astInliningTests/inlineEverything.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/programAnalysisTests/Makefile.am
>Locally modified   tests/roseTests/utilTests/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      developersScratchSpace/Dan/NullPointerChecker.C
+Scheduled for add      developersScratchSpace/Dan/test2004_50.C
+Scheduled for add      developersScratchSpace/Dan/test2004_51.C
+Scheduled for add      docs/Rose/gettingStarted.tex
+Scheduled for add      proposals/feedbackFromUsers/KirkKelsey-7-11-2004.txt
+Scheduled for add      src/midend/astQuery/queryVariant.C
+Scheduled for add      tests/roseTests/astInliningTests/test1.C
+Scheduled for add      tests/roseTests/astInliningTests/test1A.C
+Scheduled for add      tests/roseTests/astInliningTests/test1B.C
+Scheduled for add      tests/roseTests/astQueryTests/Makefile.am
+Scheduled for add      tests/roseTests/astQueryTests/input1.C
+Scheduled for add      tests/roseTests/astQueryTests/testQuery.C
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********	
	
	
2004-7-16 Qing Yi 0.7.6b
	. Rewritten the unparsing of paratheses in expressions to
          remove the many redundant paratheses.
        . In ROSETTA/src, fixed bug so that symbol tables are
          never copied (neither deep nor shallow copied) in all cases.
        . Fixed include-file directives with relative directories in
          many cases in programAnalysis and loopProcessing.
        . Added test files for programAnalysis.
        . Fixed mod-read information for incremental statments such as
          SgPlusPlus/MinusMinus, etc.
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   exampleTranslators/Makefile.in
>Locally modified   projects/arrayOptimization/Makefile.am
>Locally modified   projects/containerParallelizer/Makefile.am
>Locally modified   projects/containerParallelizer/CPAnalysis/Makefile.am
>Locally modified   projects/containerParallelizer/CPTransformation/Makefile.am
>Locally modified   src/ROSETTA/src/statement.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/terminalList.C
>Locally modified   src/ROSETTA/src/terminalList.h
>Locally modified   src/backend/unparser/modified_sage.C
>Locally modified   src/backend/unparser/unparse_expr.C
>Locally modified   src/backend/unparser/unparse_format.C
>Locally modified   src/backend/unparser/unparse_format.h
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/midend/astUtil/annotation/AnnotCollect.h
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.C
>Locally modified   src/midend/astUtil/annotation/AnnotDescriptors.h
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.C
>Locally modified   src/midend/astUtil/annotation/AnnotExpr.h
>Locally modified   src/midend/astUtil/annotation/AnnotIO.C
>Locally modified   src/midend/astUtil/annotation/AnnotIO.h
>Locally modified   src/midend/astUtil/annotation/Makefile.am
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.C
>Locally modified   src/midend/astUtil/annotation/OperatorAnnotation.h
>Locally modified   src/midend/astUtil/annotation/OperatorDescriptors.h
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.C
>Locally modified   src/midend/astUtil/annotation/TypeAnnotation.h
>Locally modified   src/midend/astUtil/astInterface/AstInterface.C
>Locally modified   src/midend/astUtil/astInterface/AstInterface.h
>Locally modified   src/midend/astUtil/astInterface/CPPAstInterface.h
>Locally modified   src/midend/astUtil/astSupport/Makefile.am
>Locally modified   src/midend/astUtil/astSupport/ProcessAstTree.h
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.C
>Locally modified   src/midend/astUtil/astSupport/StmtInfoCollect.h
>Locally modified   src/midend/astUtil/symbolicVal/Makefile.am
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicExpr.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicMultiply.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicOperator.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicPlus.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicSelect.h
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.C
>Locally modified   src/midend/astUtil/symbolicVal/SymbolicVal.h
>Locally modified   src/midend/loopProcessing/Makefile.am
>Locally modified   src/midend/loopProcessing/computation/Makefile.am
>Locally modified   src/midend/loopProcessing/depGraph/Makefile.am
>Locally modified   src/midend/loopProcessing/depInfo/Makefile.am
>Locally modified   src/midend/loopProcessing/driver/Makefile.am
>Locally modified   src/midend/loopProcessing/slicing/Makefile.am
>Locally modified   src/midend/programAnalysis/CFG/CFG.h
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.h
>Locally modified   src/midend/programAnalysis/CFG/CFG_ROSE.C
>Locally modified   src/midend/programAnalysis/CFG/Makefile.am
>Locally modified   src/midend/programAnalysis/OAWrap/OAWrap.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/DefUseChain.h
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/Makefile.am
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.C
>Locally modified   src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.h
>Locally modified   src/midend/programAnalysis/valuePropagation/Makefile.am
>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValueAnnot.h
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.C
>Locally modified   src/midend/programAnalysis/valuePropagation/ValuePropagate.h
>Locally modified   src/util/graphs/Dump.C
>Locally modified   src/util/graphs/GraphInterface.h
>Locally modified   src/util/support/DoublyLinkedList.h
>Locally modified   src/util/support/LatticeElemList.h
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
>Locally modified   tests/roseTests/loopProcessingTests/TestLoopProcessor.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_lufac.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_mm.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_rmatmult3.C
>Locally modified   tests/roseTests/loopProcessingTests/rose_tridvpk.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      tests/roseTests/programAnalysisTests/CFGTest.C
+Scheduled for add      tests/roseTests/programAnalysisTests/DataFlowTest.C
+Scheduled for add      tests/roseTests/programAnalysisTests/Makefile.am
+Scheduled for add      tests/roseTests/programAnalysisTests/StmtRefTest.C
+Scheduled for add      tests/roseTests/programAnalysisTests/TestDriver.C
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c.cfg
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c.du
+Scheduled for add      tests/roseTests/programAnalysisTests/testfile1.c.ref
********* Files Scheduled to be removed *********
-Scheduled for removal  src/midend/programAnalysis/CFG/CFGTest.C
-Scheduled for removal  src/midend/programAnalysis/CFG/cfgtestfile.c
-Scheduled for removal  src/midend/programAnalysis/dataflowAnalysis/DataFlowTest.C
********* WARNINGS *********
********* ERRORS *********



2004-7-10 Dan Quinlan 0.7.6a

	* Added Jeremiah Willcock's inlining support.  Located in:
	  ROSE/src/midend/astInlining and ROSE/tests/roseTests/astInliningTests.
	  Includes a translator for testing inlining on arbitrary input
	  codes, inliner test code inlines all possible functions and
	  cleans up code to present better code to backend (vendor) compiler.
	  This has been checked in early so that we may all play with it
	  and test it before Jeremiah leaves at the end of summer.
	  This work in an important part of enabling more complex optimizations.

	* Added support for dynamic libraries

	* Added support for a single rose and single EDG library.  This
	  sets us up to later provide the EDG library as a binary in a
	  future (so that we can distribute ROSE on the web without the 
	  EDG source code (permitted under there license to support research.
	  Example of how to build ROSE executable (with static and dynamic
	  linking):
	     g++  -fPIC -g -Wall   -o testStaticRoseLib  testRoseLib.o librose.a libedg.a -lm -lfl 
             g++  -fPIC -g -Wall   -o testSharedRoseLib  testRoseLib.o -L<path> librose.so libedg.so -lm -lfl 
	  The -L<path> is set at configure time (no action by the user is
	  required).
	
	* Added suport for -rpath (using Brian Gunney's autoconf macros),
	  Rpath syntax is set on the configure command line or defaults 
	  are set internally if it is not specified (see configure --help).

	* Fixed up all Makefile.am to build executables using dynamic
	  libraries (linking is much faster with dynamic linking and
	  the executables are dramatically smaller (typically 0.5% of
	  original size).

	* Removed all uses of sage_bool, sage_false, and sage_true (which
	  predated the introduction of bool within C++).  Suggested by
	  Jeremiah Willcock.

	* Replaces uses of "Boolean" with "bool", fixed several places
	  where "int" and "bool" were mixed up in the code. Removed
	  "FALSE" (replaced with "false") and "TRUE" (replaced with "true").

	* Added test to show how to add comments to AST (test requires a
	  comment to be associated with a valid statement (demonstrating
	  current bug).  This will be fixed in a future checkin.

	* Moved source code and header files (all but rose.h and
	  roseInternal.h) from ROSE/src to ROSE/src/roseSupport.

	* Fixed new directories to work with make -j4.

	* Removed use of Brian Miller's Performance Tests Suits since it
	  appears to have been removed from the his CVS repository.

	* Added support from C++ files with cpp suffix (fix copied from
	  Andreas's fix following his instructions).

	* Added some questions to the ROSE FAQ (with answers).

	* Removed ROSE/roseLibs, this was the previous home to a test to
	  build ROSE as two libraries.  This work took a while to mature
	  and has resulted in the new dynamic library support in ROSE.
	  (This work is checked in within this current internal release.)
	  Support is provided for two libraries -lrose and -ledg. This 
	  work has been moved to the ROSE/src directory now that all ROSE
	  source code is contained in ROSE/src.

	* Fixed attachPreprocessingInfo.C and rose_attributes_list.[hC]
	  to improve implementation of these classes (member data is
	  now private, access functions are provided, PreprocessingInfo
	  objects are now moved from the list, where it is built using the
	  lex pass, to the AST without marking the state internally.
	  Internal state is not changed as a result of insertion into AST.

	* Added test for the function in a function call to be a valid 
	  function type. Commented out until after checkin so that it
	  can be fixed in the next release.

	* Fixed (with Qing) several multiplly defined symbols that that
	  became clear in the construction of the librose.so shared library.

	* Fixed ROSE/scripts/cvschk to filter Makefile.in files from the
	  list of "Extra Files".  There are so many directories and
	  Makefile.in files that they tend to obscure the important
	  entries that are a part of basic error checking prior to a CVS 
	  checkin.

	* Removed ROSE/projects/Makefile.in from CVS repository (should
	  not have been added).

	* Added GNU attribute (depricated) to SgProject old constructor.
	  This uses the new GNU attribute mechanism and provides a warning
	  at compile-time when this depricated function is used.  Future
	  use of the depricated attribute will permit a shift from old 
	  parts of the Sage III interface.

	
********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   build
>Locally modified   configure.in
>Locally modified   makelinks
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   developersScratchSpace/Dan/Makefile.am
>Locally modified   developersScratchSpace/Markus/Makefile.am
>Locally modified   developersScratchSpace/Markus/OmpTransformations/Makefile.am
>Locally modified   docs/Rose/FAQ.tex
>Locally modified   exampleTranslators/Makefile.in
>Locally modified   exampleTranslators/AstCopyReplTester/Makefile.am
>Locally modified   exampleTranslators/DOTGenerator/Makefile.am
>Locally modified   exampleTranslators/PDFGenerator/Makefile.am
>Locally modified   exampleTranslators/defaultTranslator/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/AstProcessingExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/AstRewriteExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
>Locally modified   exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
>Locally modified   projects/BabelPreprocessor/Makefile.am
>Locally modified   projects/OpenMPPreprocessor/Makefile.am
>Locally modified   projects/arrayOptimization/Makefile.am
>Locally modified   projects/containerParallelizer/Makefile.am
>Locally modified   projects/containerParallelizer/CPAnalysis/Makefile.am
>Locally modified   projects/containerParallelizer/CPTransformation/Makefile.am
>Locally modified   projects/highLevelGrammars/Makefile.am
>Locally modified   proposals/StudentWork.txt
>Locally modified   scripts/cvschk
>Locally modified   src/Makefile.am
>Locally modified   src/ROSETTA/ROSE_ArrayGrammar.C
>Locally modified   src/ROSETTA/ROSE_ArrayGrammar.h
>Locally modified   src/ROSETTA/ROSE_Node.h
>Locally modified   src/ROSETTA/Grammar/Common.code
>Locally modified   src/ROSETTA/Grammar/Expression.code
>Locally modified   src/ROSETTA/Grammar/LocatedNode.code
>Locally modified   src/ROSETTA/Grammar/Node.code
>Locally modified   src/ROSETTA/Grammar/Statement.code
>Locally modified   src/ROSETTA/Grammar/Support.code
>Locally modified   src/ROSETTA/Grammar/Type.code
>Locally modified   src/ROSETTA/Grammar/node.macro
>Locally modified   src/ROSETTA/src/ROSETTA_macros.h
>Locally modified   src/ROSETTA/src/expression.C
>Locally modified   src/ROSETTA/src/grammar.C
>Locally modified   src/ROSETTA/src/grammar.h
>Locally modified   src/ROSETTA/src/grammarString.C
>Locally modified   src/ROSETTA/src/grammarString.h
>Locally modified   src/ROSETTA/src/grammarTreeNode.C
>Locally modified   src/ROSETTA/src/grammarTreeNode.h
>Locally modified   src/ROSETTA/src/nonterminal.h
>Locally modified   src/ROSETTA/src/support.C
>Locally modified   src/ROSETTA/src/terminal.C
>Locally modified   src/ROSETTA/src/terminal.h
>Locally modified   src/ROSETTA/src/terminalList.C
>Locally modified   src/ROSETTA/src/terminalList.h
>Locally modified   src/ROSETTA/src/type.C
>Locally modified   src/backend/unparser/Makefile.am
>Locally modified   src/backend/unparser/unparse_stmt.C
>Locally modified   src/backend/unparser/unparser.C
>Locally modified   src/backend/unparser/unparser.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/SageIII/Makefile.am
>Locally modified   src/frontend/SageIII/attachPreprocessingInfo.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.C
>Locally modified   src/frontend/SageIII/rose_attributes_list.h
>Locally modified   src/frontend/SageIII/sage3.h
>Locally modified   src/midend/Makefile.am
>Locally modified   src/midend/astProcessing/AstTests.C
>Locally modified   src/midend/astRewriteMechanism/Makefile.am
>Locally modified   src/midend/astRewriteMechanism/highLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/midLevelRewriteInterface.h
>Locally modified   src/midend/astRewriteMechanism/prefixGeneration.C
>Locally modified   src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   src/midend/loopProcessing/HackTemplate.C
>Locally modified   src/midend/programAnalysis/CFG/CFGImpl.C
>Locally modified   src/midend/programAnalysis/CFG/CFG_OA.C
>Locally modified   src/util/Makefile.am
>Locally modified   src/util/graphs/SCCAnalysis.C
>Locally modified   src/util/graphs/TransAnalysis.C
>Locally modified   src/util/stringSupport/Makefile.am
>Locally modified   tests/Makefile.am
>Locally modified   tests/CompileTests/C++Code/Makefile.am
>Locally modified   tests/PerformanceTests/Makefile.am
>Locally modified   tests/roseTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/Makefile.am
>Locally modified   tests/roseTests/astRewriteTests/testDeclarationPrefixGeneration.C
>Locally modified   tests/roseTests/loopProcessingTests/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      config/support-rpath.m4
+Scheduled for add      developersScratchSpace/Dan/test2004_47.C
+Scheduled for add      developersScratchSpace/Dan/test2004_48.C
+Scheduled for add      developersScratchSpace/Dan/test2004_49.C
+Scheduled for add      src/testRoseLib.C
+Scheduled for add      src/frontend/SageIII/preproc.lex
+Scheduled for add      src/midend/astInlining/Makefile.am
+Scheduled for add      src/midend/astInlining/inliner.C
+Scheduled for add      src/midend/astInlining/inliner.h
+Scheduled for add      src/midend/astInlining/inlinerSupport.C
+Scheduled for add      src/midend/astInlining/inlinerSupport.h
+Scheduled for add      src/midend/astInlining/isPotentiallyModified.C
+Scheduled for add      src/midend/astInlining/replaceExpressionWithStatement.C
+Scheduled for add      src/midend/astInlining/replaceExpressionWithStatement.h
+Scheduled for add      src/midend/astInlining/typeTraits.C
+Scheduled for add      src/midend/astInlining/typeTraits.h
+Scheduled for add      src/roseSupport/Makefile.am
+Scheduled for add      src/roseSupport/optionDeclaration.C
+Scheduled for add      src/roseSupport/optionDeclaration.h
+Scheduled for add      src/roseSupport/roseTranslators.C
+Scheduled for add      src/roseSupport/roseTranslators.h
+Scheduled for add      src/roseSupport/sourceLocationInheritedAttribute.C
+Scheduled for add      src/roseSupport/sourceLocationInheritedAttribute.h
+Scheduled for add      src/roseSupport/templateSupport.C
+Scheduled for add      src/roseSupport/templateSupport.h
+Scheduled for add      src/roseSupport/transformationSupport.C
+Scheduled for add      src/roseSupport/transformationSupport.h
+Scheduled for add      src/roseSupport/utility_functions.C
+Scheduled for add      src/roseSupport/utility_functions.h
+Scheduled for add      tests/roseTests/astInliningTests/Makefile.am
+Scheduled for add      tests/roseTests/astInliningTests/fail1.C
+Scheduled for add      tests/roseTests/astInliningTests/fail2.C
+Scheduled for add      tests/roseTests/astInliningTests/inlineEverything.C
+Scheduled for add      tests/roseTests/astInliningTests/pass1.C
+Scheduled for add      tests/roseTests/astInliningTests/pass10.C
+Scheduled for add      tests/roseTests/astInliningTests/pass11.C
+Scheduled for add      tests/roseTests/astInliningTests/pass12.C
+Scheduled for add      tests/roseTests/astInliningTests/pass13.C
+Scheduled for add      tests/roseTests/astInliningTests/pass14.C
+Scheduled for add      tests/roseTests/astInliningTests/pass15.C
+Scheduled for add      tests/roseTests/astInliningTests/pass16.C
+Scheduled for add      tests/roseTests/astInliningTests/pass17.C
+Scheduled for add      tests/roseTests/astInliningTests/pass2.C
+Scheduled for add      tests/roseTests/astInliningTests/pass3.C
+Scheduled for add      tests/roseTests/astInliningTests/pass4.C
+Scheduled for add      tests/roseTests/astInliningTests/pass5.C
+Scheduled for add      tests/roseTests/astInliningTests/pass6.C
+Scheduled for add      tests/roseTests/astInliningTests/pass7.C
+Scheduled for add      tests/roseTests/astInliningTests/pass8.C
+Scheduled for add      tests/roseTests/astInliningTests/pass9.C
+Scheduled for add      tests/roseTests/astInliningTests/testscript
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram5.C
+Scheduled for add      tests/roseTests/astRewriteTests/testCommentInsertion.C
+Scheduled for add      tests/roseTests/utilTests/Makefile.am
+Scheduled for add      tests/roseTests/utilTests/testStrings.C
********* Files Scheduled to be removed *********
-Scheduled for removal  projects/Makefile.in
-Scheduled for removal  roseLibs/Makefile.am
-Scheduled for removal  roseLibs/README
-Scheduled for removal  roseLibs/testRoseLib.C
-Scheduled for removal  src/AST_Fragment.C
-Scheduled for removal  src/globalTraverse.C
-Scheduled for removal  src/globalTraverse.h
-Scheduled for removal  src/grammarCodeGenerator.txt
-Scheduled for removal  src/optionDeclaration.C
-Scheduled for removal  src/optionDeclaration.h
-Scheduled for removal  src/pdf_ast.C
-Scheduled for removal  src/preproc.lex
-Scheduled for removal  src/preprocessorSupport.C
-Scheduled for removal  src/query.C
-Scheduled for removal  src/query.h
-Scheduled for removal  src/roseString.C
-Scheduled for removal  src/roseString.h
-Scheduled for removal  src/roseTranslators.C
-Scheduled for removal  src/roseTranslators.h
-Scheduled for removal  src/show.C
-Scheduled for removal  src/show.h
-Scheduled for removal  src/sourceLocationInheritedAttribute.C
-Scheduled for removal  src/sourceLocationInheritedAttribute.h
-Scheduled for removal  src/specification.C
-Scheduled for removal  src/specification.h
-Scheduled for removal  src/synthesizedAttributeBaseClass.C
-Scheduled for removal  src/synthesizedAttributeBaseClass.h
-Scheduled for removal  src/synthesizedAttributeListElement.C
-Scheduled for removal  src/synthesizedAttributeListElement.h
-Scheduled for removal  src/templateSupport.C
-Scheduled for removal  src/templateSupport.h
-Scheduled for removal  src/transformationSupport.C
-Scheduled for removal  src/transformationSupport.h
-Scheduled for removal  src/utility_functions.C
-Scheduled for removal  src/utility_functions.h
-Scheduled for removal  src/variant.C
-Scheduled for removal  src/variant.C_m4
-Scheduled for removal  src/ROSETTA/terminal.C.old
-Scheduled for removal  src/ROSETTA/Grammar/Support.code.b00
-Scheduled for removal  src/ROSETTA/Grammar/Support.code.original
-Scheduled for removal  src/ROSETTA/Grammar/Support.code.prelinkSupport
-Scheduled for removal  src/unparser/.pure
-Scheduled for removal  src/util/stringSupport/testStrings.C
********* WARNINGS *********
********* ERRORS *********
	
	
2004-7-7 Dan Quinlan 0.7.5a
	* Fixed bug reported by Beata.  This was the last bug to be fixed
	  in the list previously addressed in the AST fixup (except for
	  the resetting of the parent pointers to match the traversal).
	  All tests in the AST fixup are now asserts so that they will
	  be properly trapped if found in the future.

	* This version reorganized the ROSE directory structure, as agreed
	  upon in December 2003 and as proposed in ROSE/proposals.
	  Minor differences still exists:
	     1) not all names are uniformly following the same 
	        conventions, but most all and all new directories do so.
	        Only a few lower level directories violate this rule.
	     2) All tests using ROSE (using any code in ROSE/src) had
	        to be moved outside of ROSE/src so that the libraries 
	        could all be built before attempting to link test codes.
	        All test have been moved to the ROSE/tests/roseTests
	        directory.
	  A circular dependence regarding the Coco work is documented
	  but not yet fixed.  I expect that Markus should comment on that
	  and maybe even fix it up as he thinks best.  The following
	  message in the Makefiles document the problem:
	     # Dependence cycle found in makefiles: ROSE/src/3rdPartyLibraries/coco can't be built until
             # ROSE is built and ROSE/midend/astProcessing/CocoPreprocessor can't be built until
             # coco is built.  ROSE can't be built until all of ROSE/src (including it's subdirectories)
             # is built.  Not clear now to best fix this Coco problem.

	* Much of the documentation has been iterated over and new
	  sections have been added based on user (and student) feedback.
	  
	* Corrections and typos in the manual kindly contributed by Beata last
	  year were finally used. So at least all those problems are fixed. We
	  welcome contributions and comments from anyone else regarding
	  the documentation in ROSE.  Eventually it is used to improve the 
	  documentation :-).

	* New version of ROSE using new directory structure work using
	  "make -j4", previouslt failed. "make -j4 check" and 
	  "gmake -j4 distcheck" now work as well.
	

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   build
>Locally modified   configure.in
>Locally modified   makelinks
>Locally modified   ROSE_ResearchPapers/README
>Locally modified   ROSE_ResearchPapers/selectedpapers.bib
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/create_system_headers
>Locally modified   config/support-doxygen.m4
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/designOfRose.tex
>Locally modified   docs/Rose/introduction.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/preprocessorDesign.tex
>Locally modified   docs/Rose/requirements.tex
>Locally modified   docs/Rose/rose.cfg.in
>Locally modified   docs/Rose/sage.cfg.in
>Locally modified   docs/Rose/usingRose.tex
>Locally modified   docs/Rose/QueryLibrary/QueryLibrary.tex
>Locally modified   proposals/RoseProposedDirectoryStructure.dot
>Locally modified   proposals/testingProposal.txt
>Locally modified   roseLibs/Makefile.am
>Locally modified   roseLibs/README
>Locally modified   roseLibs/testRoseLib.C
>Locally modified   src/Makefile.am
>Locally modified   src/transformationSupport.C
>Locally modified   src/utility_functions.C
>Locally modified   src/frontend/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/misc/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/src/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   tools/README
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      GNU_HEADERS/builtinFunctions.h
+Scheduled for add      developersScratchSpace/Makefile.am
+Scheduled for add      developersScratchSpace/README
+Scheduled for add      developersScratchSpace/Dan/A++.h
+Scheduled for add      developersScratchSpace/Dan/A++Test.C
+Scheduled for add      developersScratchSpace/Dan/A++_notemplates.h
+Scheduled for add      developersScratchSpace/Dan/AndreasTranslator.C
+Scheduled for add      developersScratchSpace/Dan/Domain.h.old
+Scheduled for add      developersScratchSpace/Dan/EDG_Static_dataStructureTest_1.C.dot
+Scheduled for add      developersScratchSpace/Dan/Makefile.am
+Scheduled for add      developersScratchSpace/Dan/Makefile.am~
+Scheduled for add      developersScratchSpace/Dan/README
+Scheduled for add      developersScratchSpace/Dan/Static_dataStructureTest_1.C.dot
+Scheduled for add      developersScratchSpace/Dan/Static_dataStructureTest_1.C.pdot
+Scheduled for add      developersScratchSpace/Dan/Static_test2003_22.C.dot
+Scheduled for add      developersScratchSpace/Dan/Static_test2003_22.C.pdot
+Scheduled for add      developersScratchSpace/Dan/astAttributeTest.C
+Scheduled for add      developersScratchSpace/Dan/beata.C
+Scheduled for add      developersScratchSpace/Dan/beata.C~
+Scheduled for add      developersScratchSpace/Dan/beataInput.C
+Scheduled for add      developersScratchSpace/Dan/blkgen.c
+Scheduled for add      developersScratchSpace/Dan/commandlineProcessor.C
+Scheduled for add      developersScratchSpace/Dan/confdefs.h
+Scheduled for add      developersScratchSpace/Dan/conftest.C
+Scheduled for add      developersScratchSpace/Dan/ctloutput.c
+Scheduled for add      developersScratchSpace/Dan/error.txt
+Scheduled for add      developersScratchSpace/Dan/fileFilter.C
+Scheduled for add      developersScratchSpace/Dan/g++Options.txt
+Scheduled for add      developersScratchSpace/Dan/gccOptions.txt
+Scheduled for add      developersScratchSpace/Dan/gccOptions.txt~
+Scheduled for add      developersScratchSpace/Dan/interp.C
+Scheduled for add      developersScratchSpace/Dan/irs.h.old
+Scheduled for add      developersScratchSpace/Dan/lexPhase2003_01.C
+Scheduled for add      developersScratchSpace/Dan/lexPhase2003_02.C
+Scheduled for add      developersScratchSpace/Dan/main2.c
+Scheduled for add      developersScratchSpace/Dan/markus_typedef_error.C
+Scheduled for add      developersScratchSpace/Dan/preprocessor.C
+Scheduled for add      developersScratchSpace/Dan/printattr.c
+Scheduled for add      developersScratchSpace/Dan/query_timer.c
+Scheduled for add      developersScratchSpace/Dan/redblack.C
+Scheduled for add      developersScratchSpace/Dan/rgst_types.c
+Scheduled for add      developersScratchSpace/Dan/riemann.C
+Scheduled for add      developersScratchSpace/Dan/rose_interp.C
+Scheduled for add      developersScratchSpace/Dan/silo.h.old
+Scheduled for add      developersScratchSpace/Dan/simpleIndirectLoop.c
+Scheduled for add      developersScratchSpace/Dan/sort2.c
+Scheduled for add      developersScratchSpace/Dan/templateDetails.txt
+Scheduled for add      developersScratchSpace/Dan/test.C
+Scheduled for add      developersScratchSpace/Dan/test.ps
+Scheduled for add      developersScratchSpace/Dan/test2001_01.C
+Scheduled for add      developersScratchSpace/Dan/test2001_02.C
+Scheduled for add      developersScratchSpace/Dan/test2001_03.C
+Scheduled for add      developersScratchSpace/Dan/test2001_04.C
+Scheduled for add      developersScratchSpace/Dan/test2001_05.C
+Scheduled for add      developersScratchSpace/Dan/test2001_05.h
+Scheduled for add      developersScratchSpace/Dan/test2001_06.C
+Scheduled for add      developersScratchSpace/Dan/test2001_07.C
+Scheduled for add      developersScratchSpace/Dan/test2001_08.C
+Scheduled for add      developersScratchSpace/Dan/test2001_09.C
+Scheduled for add      developersScratchSpace/Dan/test2001_10.C
+Scheduled for add      developersScratchSpace/Dan/test2001_11.C
+Scheduled for add      developersScratchSpace/Dan/test2001_12.C
+Scheduled for add      developersScratchSpace/Dan/test2001_13.C
+Scheduled for add      developersScratchSpace/Dan/test2001_14.C
+Scheduled for add      developersScratchSpace/Dan/test2001_15.C
+Scheduled for add      developersScratchSpace/Dan/test2001_15.h
+Scheduled for add      developersScratchSpace/Dan/test2001_16.C
+Scheduled for add      developersScratchSpace/Dan/test2001_17.C
+Scheduled for add      developersScratchSpace/Dan/test2001_18.C
+Scheduled for add      developersScratchSpace/Dan/test2001_18A.h
+Scheduled for add      developersScratchSpace/Dan/test2001_18B.h
+Scheduled for add      developersScratchSpace/Dan/test2001_19.C
+Scheduled for add      developersScratchSpace/Dan/test2001_20.C
+Scheduled for add      developersScratchSpace/Dan/test2001_21.C
+Scheduled for add      developersScratchSpace/Dan/test2001_22.C
+Scheduled for add      developersScratchSpace/Dan/test2001_23.C
+Scheduled for add      developersScratchSpace/Dan/test2001_24.C
+Scheduled for add      developersScratchSpace/Dan/test2001_25.C
+Scheduled for add      developersScratchSpace/Dan/test2001_26.C
+Scheduled for add      developersScratchSpace/Dan/test2001_27.C
+Scheduled for add      developersScratchSpace/Dan/test2001_28.C
+Scheduled for add      developersScratchSpace/Dan/test2001_29.C
+Scheduled for add      developersScratchSpace/Dan/test2002_01.C
+Scheduled for add      developersScratchSpace/Dan/test2003_01.C
+Scheduled for add      developersScratchSpace/Dan/test2003_02.C
+Scheduled for add      developersScratchSpace/Dan/test2003_03.C
+Scheduled for add      developersScratchSpace/Dan/test2003_04.C
+Scheduled for add      developersScratchSpace/Dan/test2003_05.C
+Scheduled for add      developersScratchSpace/Dan/test2003_06.C
+Scheduled for add      developersScratchSpace/Dan/test2003_07.C
+Scheduled for add      developersScratchSpace/Dan/test2003_08.C
+Scheduled for add      developersScratchSpace/Dan/test2003_08.h
+Scheduled for add      developersScratchSpace/Dan/test2003_09.C
+Scheduled for add      developersScratchSpace/Dan/test2003_09.h
+Scheduled for add      developersScratchSpace/Dan/test2003_10.C
+Scheduled for add      developersScratchSpace/Dan/test2003_11.C
+Scheduled for add      developersScratchSpace/Dan/test2003_12.C
+Scheduled for add      developersScratchSpace/Dan/test2003_12.c
+Scheduled for add      developersScratchSpace/Dan/test2003_12.h
+Scheduled for add      developersScratchSpace/Dan/test2003_13.C
+Scheduled for add      developersScratchSpace/Dan/test2003_14.C
+Scheduled for add      developersScratchSpace/Dan/test2003_14.h
+Scheduled for add      developersScratchSpace/Dan/test2003_15.C
+Scheduled for add      developersScratchSpace/Dan/test2003_16.C
+Scheduled for add      developersScratchSpace/Dan/test2003_17.C
+Scheduled for add      developersScratchSpace/Dan/test2003_18.C
+Scheduled for add      developersScratchSpace/Dan/test2003_19.C
+Scheduled for add      developersScratchSpace/Dan/test2003_20.C
+Scheduled for add      developersScratchSpace/Dan/test2003_21.C
+Scheduled for add      developersScratchSpace/Dan/test2003_22.C
+Scheduled for add      developersScratchSpace/Dan/test2003_22.h
+Scheduled for add      developersScratchSpace/Dan/test2003_23.C
+Scheduled for add      developersScratchSpace/Dan/test2003_24.C
+Scheduled for add      developersScratchSpace/Dan/test2003_24.h
+Scheduled for add      developersScratchSpace/Dan/test2003_25.C
+Scheduled for add      developersScratchSpace/Dan/test2003_25.h
+Scheduled for add      developersScratchSpace/Dan/test2003_26.C
+Scheduled for add      developersScratchSpace/Dan/test2003_27.C
+Scheduled for add      developersScratchSpace/Dan/test2003_28.C
+Scheduled for add      developersScratchSpace/Dan/test2003_29.C
+Scheduled for add      developersScratchSpace/Dan/test2003_30.C
+Scheduled for add      developersScratchSpace/Dan/test2003_31.C
+Scheduled for add      developersScratchSpace/Dan/test2003_32.C
+Scheduled for add      developersScratchSpace/Dan/test2003_33.C
+Scheduled for add      developersScratchSpace/Dan/test2003_34.C
+Scheduled for add      developersScratchSpace/Dan/test2003_35.C
+Scheduled for add      developersScratchSpace/Dan/test2003_36.C
+Scheduled for add      developersScratchSpace/Dan/test2003_37.C
+Scheduled for add      developersScratchSpace/Dan/test2003_38.C
+Scheduled for add      developersScratchSpace/Dan/test2004_01.C
+Scheduled for add      developersScratchSpace/Dan/test2004_02.C
+Scheduled for add      developersScratchSpace/Dan/test2004_03.C
+Scheduled for add      developersScratchSpace/Dan/test2004_04.C
+Scheduled for add      developersScratchSpace/Dan/test2004_05.C
+Scheduled for add      developersScratchSpace/Dan/test2004_06.C
+Scheduled for add      developersScratchSpace/Dan/test2004_07.C
+Scheduled for add      developersScratchSpace/Dan/test2004_08.C
+Scheduled for add      developersScratchSpace/Dan/test2004_09.C
+Scheduled for add      developersScratchSpace/Dan/test2004_10.C
+Scheduled for add      developersScratchSpace/Dan/test2004_11.C
+Scheduled for add      developersScratchSpace/Dan/test2004_12.C
+Scheduled for add      developersScratchSpace/Dan/test2004_13.C
+Scheduled for add      developersScratchSpace/Dan/test2004_14.C
+Scheduled for add      developersScratchSpace/Dan/test2004_15.C
+Scheduled for add      developersScratchSpace/Dan/test2004_16.C
+Scheduled for add      developersScratchSpace/Dan/test2004_17.C
+Scheduled for add      developersScratchSpace/Dan/test2004_18.C
+Scheduled for add      developersScratchSpace/Dan/test2004_19.C
+Scheduled for add      developersScratchSpace/Dan/test2004_20.C
+Scheduled for add      developersScratchSpace/Dan/test2004_21.c
+Scheduled for add      developersScratchSpace/Dan/test2004_21.c~
+Scheduled for add      developersScratchSpace/Dan/test2004_22.C
+Scheduled for add      developersScratchSpace/Dan/test2004_23.C
+Scheduled for add      developersScratchSpace/Dan/test2004_24.C
+Scheduled for add      developersScratchSpace/Dan/test2004_25.C
+Scheduled for add      developersScratchSpace/Dan/test2004_26.C
+Scheduled for add      developersScratchSpace/Dan/test2004_27.C
+Scheduled for add      developersScratchSpace/Dan/test2004_28.C
+Scheduled for add      developersScratchSpace/Dan/test2004_29.C
+Scheduled for add      developersScratchSpace/Dan/test2004_30.C
+Scheduled for add      developersScratchSpace/Dan/test2004_31.C
+Scheduled for add      developersScratchSpace/Dan/test2004_32.C
+Scheduled for add      developersScratchSpace/Dan/test2004_33.C
+Scheduled for add      developersScratchSpace/Dan/test2004_34.C
+Scheduled for add      developersScratchSpace/Dan/test2004_35.C
+Scheduled for add      developersScratchSpace/Dan/test2004_36.C
+Scheduled for add      developersScratchSpace/Dan/test2004_37.C
+Scheduled for add      developersScratchSpace/Dan/test2004_38.C
+Scheduled for add      developersScratchSpace/Dan/test2004_39.C
+Scheduled for add      developersScratchSpace/Dan/test2004_40.C
+Scheduled for add      developersScratchSpace/Dan/test2004_40.h
+Scheduled for add      developersScratchSpace/Dan/test2004_40.h~
+Scheduled for add      developersScratchSpace/Dan/test2004_41.C
+Scheduled for add      developersScratchSpace/Dan/test2004_42.C
+Scheduled for add      developersScratchSpace/Dan/test2004_43.C
+Scheduled for add      developersScratchSpace/Dan/test2004_43.C~
+Scheduled for add      developersScratchSpace/Dan/test2004_44.C
+Scheduled for add      developersScratchSpace/Dan/test2004_44.C~
+Scheduled for add      developersScratchSpace/Dan/test2004_45.C
+Scheduled for add      developersScratchSpace/Dan/test2004_45.C~
+Scheduled for add      developersScratchSpace/Dan/test2004_46.C
+Scheduled for add      developersScratchSpace/Dan/testAnsi.C
+Scheduled for add      developersScratchSpace/Dan/testAnsiC.c
+Scheduled for add      developersScratchSpace/Dan/testAnsiC.c~
+Scheduled for add      developersScratchSpace/Dan/testAstAttributes_testFile.C
+Scheduled for add      developersScratchSpace/Dan/testC.c
+Scheduled for add      developersScratchSpace/Dan/testC1.C.old
+Scheduled for add      developersScratchSpace/Dan/testCvsCpp.c
+Scheduled for add      developersScratchSpace/Dan/testFileFilter.C
+Scheduled for add      developersScratchSpace/Dan/testMe.C.Preorder.dot
+Scheduled for add      developersScratchSpace/Dan/testNotEqualBut
+Scheduled for add      developersScratchSpace/Dan/testNotEqualBut.C
+Scheduled for add      developersScratchSpace/Dan/testQueryLib.C
+Scheduled for add      developersScratchSpace/Dan/testQueryLib_testFile.C
+Scheduled for add      developersScratchSpace/Dan/testTemplateSpecialization.C
+Scheduled for add      developersScratchSpace/Dan/testTemplateSpecializationSupport.C
+Scheduled for add      developersScratchSpace/Dan/testTemplates.C
+Scheduled for add      developersScratchSpace/Dan/test_new_edg.C
+Scheduled for add      developersScratchSpace/Dan/test_noname.C
+Scheduled for add      developersScratchSpace/Dan/testcode.C
+Scheduled for add      developersScratchSpace/Dan/typedefExamples.C
+Scheduled for add      developersScratchSpace/Dan/userexitfn.c
+Scheduled for add      developersScratchSpace/Dan/variableTypeTest.tar.gz
+Scheduled for add      developersScratchSpace/Dan/wherebug.txt
+Scheduled for add      developersScratchSpace/Markus/Makefile.am
+Scheduled for add      developersScratchSpace/Markus/Makefile.am~
+Scheduled for add      developersScratchSpace/Markus/UserDefList.h
+Scheduled for add      developersScratchSpace/Markus/lextest.C
+Scheduled for add      developersScratchSpace/Markus/mscomp.C
+Scheduled for add      developersScratchSpace/Markus/onefileonly.C
+Scheduled for add      developersScratchSpace/Markus/rev_test1.C
+Scheduled for add      developersScratchSpace/Markus/rev_test2.C
+Scheduled for add      developersScratchSpace/Markus/simpleA++.h
+Scheduled for add      developersScratchSpace/Markus/test1.C
+Scheduled for add      developersScratchSpace/Markus/test2.C
+Scheduled for add      developersScratchSpace/Markus/test3.C
+Scheduled for add      developersScratchSpace/Markus/test4.C
+Scheduled for add      developersScratchSpace/Markus/test5.C
+Scheduled for add      developersScratchSpace/Markus/test5.h
+Scheduled for add      developersScratchSpace/Markus/test6.C
+Scheduled for add      developersScratchSpace/Markus/test7.C
+Scheduled for add      developersScratchSpace/Markus/test_exceptions1.C
+Scheduled for add      developersScratchSpace/Markus/test_functiondecl1.C
+Scheduled for add      developersScratchSpace/Markus/test_functiondecl2.C
+Scheduled for add      developersScratchSpace/Markus/test_functiondecl2.h
+Scheduled for add      developersScratchSpace/Markus/test_functiondecl3.C
+Scheduled for add      developersScratchSpace/Markus/transformationOptions.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformation.atg
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformation.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformation.lst
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformationCocoCodes.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformationCocoErrorMessages.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.C
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformationParser_Declarations.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/BodyTransformation_pp.atg
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/Makefile.am
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/Makefile.am~
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformation.atg
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationCocoCodes.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationCocoErrorMessages.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.C
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformationParser_Declarations.h
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/OmpLoopRATransformation_pp.atg
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/compiler.frm
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/notes.txt
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/parser_c.frm
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/parser_h.frm
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/sgnode.cpp
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/sgnodep.cpp
+Scheduled for add      developersScratchSpace/Markus/OmpTransformations/sgnodep.hpp
+Scheduled for add      developersScratchSpace/Qing/Makefile.am
+Scheduled for add      docs/Rose/FAQ.tex
+Scheduled for add      exampleTranslators/Makefile.am
+Scheduled for add      exampleTranslators/Makefile.in
+Scheduled for add      exampleTranslators/AstCopyReplTester/Makefile.am
+Scheduled for add      exampleTranslators/AstCopyReplTester/astCopyReplTest.C
+Scheduled for add      exampleTranslators/DOTGenerator/Makefile.am
+Scheduled for add      exampleTranslators/DOTGenerator/dotGenerator.C
+Scheduled for add      exampleTranslators/DOTGenerator/testdot_01.C
+Scheduled for add      exampleTranslators/PDFGenerator/Makefile.am
+Scheduled for add      exampleTranslators/PDFGenerator/pdfGenerator.C
+Scheduled for add      exampleTranslators/defaultTranslator/Makefile.am
+Scheduled for add      exampleTranslators/defaultTranslator/defaultTranslator.C
+Scheduled for add      exampleTranslators/documentedExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/AstProcessingExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/AstProcessingExamples/identityTranslator.C
+Scheduled for add      exampleTranslators/documentedExamples/AstRewriteExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/AstRewriteExamples/astRewriteExample1.C
+Scheduled for add      exampleTranslators/documentedExamples/AstRewriteExamples/astRewriteInterfaceFunction.codeFragment
+Scheduled for add      exampleTranslators/documentedExamples/AstRewriteExamples/exampleRewrite1.C
+Scheduled for add      exampleTranslators/documentedExamples/AstRewriteExamples/inputRewrite1.C
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/customtable_example.C
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/databasegraph_example.C
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/interfaces_example.h
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/rosedb_example.C
+Scheduled for add      exampleTranslators/documentedExamples/dataBaseExamples/simplecallgraph_example.C
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/AST-dot1.ps
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/AST-pdf2.ps
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/AstPdfOutputTranslator.C
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/AstTraversalTranslator.C
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/Makefile.am
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/astOutput.codeFragment
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/commandLineProcessingExample.C
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/exampleMakefile.in
+Scheduled for add      exampleTranslators/documentedExamples/simpleTranslatorExamples/identityTranslator.C
+Scheduled for add      projects/Makefile.am
+Scheduled for add      projects/Makefile.am~
+Scheduled for add      projects/Makefile.in
+Scheduled for add      projects/A++Preprocessor1999/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/ROSE_Transformations.h
+Scheduled for add      projects/A++Preprocessor1999/array_class_interface.C
+Scheduled for add      projects/A++Preprocessor1999/array_class_interface.h
+Scheduled for add      projects/A++Preprocessor1999/optimizingArrayPreprocessor.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayFunctionExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayOperandExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayParenthesisOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArraySQRT.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayVariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorAdd.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorEquals.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorMultiply.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_Expression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_Statement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_VariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ElseWhereStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_Expression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ExpressionStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ForStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_IfStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_RealArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_Statement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_StatementBlock.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_UserFunction.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_VariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_WhereStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_doubleArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_floatArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_intArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/design.txt
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/grammar.h.original
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/grammar.perl
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/grammarClassDeclatationMacros.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/grammarClassDefinitionMacros.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayFunctionExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayOperandExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayParenthesisOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArraySQRT.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayVariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperator.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorAdd.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorEquals.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorMultiply.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_Expression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_Statement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_VariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ElseWhereStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Expression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ExpressionStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ForStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_IfStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Node.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_RealArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Statement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_StatementBlock.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_UserFunction.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_VariableDeclaration.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_WhereStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_doubleArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_floatArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_intArrayVariableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/node.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/roseVariants.h
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/transform_2.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/transformation_2.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayGrammar/transformation_2.h
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/ROSE_TRANSFORMATION_SOURCE_3.h
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_NonTransformableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_NonTransformableStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorEquals.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorNonAssignment.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableOperandExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableStatementBlock.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableUnaryOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/grammar.perl
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/grammarClassDeclatationMacros.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/grammarClassDefinitionMacros.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/grammar_3.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/grammar_3.h
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_NonTransformableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_NonTransformableStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorEquals.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorNonAssignment.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableNode.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableOperandExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableStatement.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableStatementBlock.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableUnaryOperatorExpression.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/node.macro
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/operandDataBase.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/statementDataBase.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/supported_dimensions.h
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/transform_3.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/transformation_3.C
+Scheduled for add      projects/A++Preprocessor1999/ArrayTransformationGrammar/transformation_3.h
+Scheduled for add      projects/A++Preprocessor1999/ListT/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/ListT/Ref.ps
+Scheduled for add      projects/A++Preprocessor1999/ListT/Ref.tex
+Scheduled for add      projects/A++Preprocessor1999/ListT/tlist.C
+Scheduled for add      projects/A++Preprocessor1999/ListT/tlist.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/Makefile.Christian
+Scheduled for add      projects/A++Preprocessor1999/Padding/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/Padding/alignData.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/alignData.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/arrayInfo.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/arrayInfo.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/arrayReference.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/arrayReference.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/cacheInfo.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/cacheInfo.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/dependencies.incl
+Scheduled for add      projects/A++Preprocessor1999/Padding/ofiles.incl
+Scheduled for add      projects/A++Preprocessor1999/Padding/padding_conditions.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/padding_conditions.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/padding_tools.C
+Scheduled for add      projects/A++Preprocessor1999/Padding/padding_tools.h
+Scheduled for add      projects/A++Preprocessor1999/Padding/testPad.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/ArrayPaddingTransform.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/ArrayPaddingTransform.h
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/Makefile.Christian
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/aptScope.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/aptScope.h
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/aptScopeType.h
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/arrayDeclInfo.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/arrayDeclInfo.h
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/arrayRefInfo.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/arrayRefInfo.h
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/dependencies.incl
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/ofiles.incl
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/pad_transform.C
+Scheduled for add      projects/A++Preprocessor1999/PaddingTrans/pad_transform.h
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/Makefile.am
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/TransformationBase.C
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/TransformationBase.h
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/copy.C
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/edit.C
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/targetTemplateFunction.C
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/transformationTemplate.C
+Scheduled for add      projects/A++Preprocessor1999/TransformBaseClass/transformationTemplateFunction.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayPreprocessor.C
+Scheduled for add      projects/A++Preprocessor2003/Makefile.am
+Scheduled for add      projects/A++Preprocessor2003/TODO.txt
+Scheduled for add      projects/A++Preprocessor2003/arrayInheritedAttributeBaseClass.C
+Scheduled for add      projects/A++Preprocessor2003/arrayInheritedAttributeBaseClass.h
+Scheduled for add      projects/A++Preprocessor2003/arrayPreprocessor.h
+Scheduled for add      projects/A++Preprocessor2003/arrayStatementTransformation.C.old
+Scheduled for add      projects/A++Preprocessor2003/arrayStatementTransformation.h.old
+Scheduled for add      projects/A++Preprocessor2003/arrayTransformationSupport.C
+Scheduled for add      projects/A++Preprocessor2003/arrayTransformationSupport.h
+Scheduled for add      projects/A++Preprocessor2003/arrayVariableDataBase.C
+Scheduled for add      projects/A++Preprocessor2003/convect.C
+Scheduled for add      projects/A++Preprocessor2003/convectFragment.C
+Scheduled for add      projects/A++Preprocessor2003/documentation.txt
+Scheduled for add      projects/A++Preprocessor2003/indexVariableDataBase.C
+Scheduled for add      projects/A++Preprocessor2003/instrumentationExample.C
+Scheduled for add      projects/A++Preprocessor2003/multiTransformExample.C
+Scheduled for add      projects/A++Preprocessor2003/operandDataBase.C
+Scheduled for add      projects/A++Preprocessor2003/operandDataBase.h
+Scheduled for add      projects/A++Preprocessor2003/programTransformation.C
+Scheduled for add      projects/A++Preprocessor2003/programTransformation.h
+Scheduled for add      projects/A++Preprocessor2003/scalarIndexingArrayStatementTransformation.C.old
+Scheduled for add      projects/A++Preprocessor2003/scalarIndexingArrayStatementTransformation.h.old
+Scheduled for add      projects/A++Preprocessor2003/simpleA++.h
+Scheduled for add      projects/A++Preprocessor2003/testApp.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_01.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_02.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_03.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_04.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_05.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_06.C
+Scheduled for add      projects/A++Preprocessor2003/testAxx2002_07.C
+Scheduled for add      projects/A++Preprocessor2003/testCodeTemplate.inc
+Scheduled for add      projects/A++Preprocessor2003/testNewTraversal.C
+Scheduled for add      projects/A++Preprocessor2003/transformationMacro-length.h
+Scheduled for add      projects/A++Preprocessor2003/transformationMacro-size.h
+Scheduled for add      projects/A++Preprocessor2003/transformationMacro-stride.h
+Scheduled for add      projects/A++Preprocessor2003/transformationMacro-uniform_size.h
+Scheduled for add      projects/A++Preprocessor2003/transformationMacro-variable_size.h
+Scheduled for add      projects/A++Preprocessor2003/transformationMacros.h
+Scheduled for add      projects/A++Preprocessor2003/transformationOptions.C
+Scheduled for add      projects/A++Preprocessor2003/transformationOptions.h
+Scheduled for add      projects/A++Preprocessor2003/transformationSubscriptMacros.h
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/Makefile.am
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
+Scheduled for add      projects/A++Preprocessor2003/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
+Scheduled for add      projects/A++Preprocessor2003/IndexOffsetQuery/Makefile.am
+Scheduled for add      projects/A++Preprocessor2003/IndexOffsetQuery/indexOffsetQuery.C
+Scheduled for add      projects/A++Preprocessor2003/IndexOffsetQuery/indexOffsetQuery.h
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/Makefile.am
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/database.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/indexDataBase.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarDataBase.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarDataBase.h
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
+Scheduled for add      projects/A++Preprocessor2003/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
+Scheduled for add      projects/A++Preprocessor2003/docs/AST.ps
+Scheduled for add      projects/A++Preprocessor2003/docs/indirectAddressingCode.txt
+Scheduled for add      projects/A++Preprocessor2003/docs/kullTalk.ps
+Scheduled for add      projects/A++Preprocessor2003/docs/kullTalk.tex
+Scheduled for add      projects/A++Preprocessor2003/docs/listings.sty
+Scheduled for add      projects/A++Preprocessor2003/docs/lstlang1.sty
+Scheduled for add      projects/A++Preprocessor2003/docs/lstlang2.sty
+Scheduled for add      projects/A++Preprocessor2003/docs/lstmisc.sty
+Scheduled for add      projects/A++Preprocessor2003/docs/rose_testAxx2002_02.C
+Scheduled for add      projects/A++Preprocessor2003/docs/scarlarIndexingOptimization.txt
+Scheduled for add      projects/A++Preprocessor2003/docs/talk.C
+Scheduled for add      projects/A++Preprocessor2003/docs/talk.tex
+Scheduled for add      projects/A++Preprocessor2003/docs/talk2.tex
+Scheduled for add      projects/A++Preprocessor2003/docs/talk3.tex
+Scheduled for add      projects/BabelPreprocessor/Makefile.am
+Scheduled for add      projects/BabelPreprocessor/TODO.txt
+Scheduled for add      projects/BabelPreprocessor/babelPreprocessor.C
+Scheduled for add      projects/BabelPreprocessor/babelTest_1.C
+Scheduled for add      projects/BabelPreprocessor/babelTest_2.C
+Scheduled for add      projects/BabelPreprocessor/babelTest_3.C
+Scheduled for add      projects/BabelPreprocessor/babelTransformation.C
+Scheduled for add      projects/BabelPreprocessor/babelTransformation.h
+Scheduled for add      projects/BabelPreprocessor/options.C
+Scheduled for add      projects/BabelPreprocessor/sidlFunction.C
+Scheduled for add      projects/BabelPreprocessor/simpleA++.h
+Scheduled for add      projects/BabelPreprocessor/transformationOptions.C
+Scheduled for add      projects/BabelPreprocessor/transformationOptions.h
+Scheduled for add      projects/OpenMPPreprocessor/Makefile.am
+Scheduled for add      projects/OpenMPPreprocessor/OpenMPPreprocessor.C
+Scheduled for add      projects/OpenMPPreprocessor/example.C
+Scheduled for add      projects/OpenMPPreprocessor/exampleCode.txt
+Scheduled for add      projects/OpenMPPreprocessor/exampleOpenMPTransformation.txt
+Scheduled for add      projects/OpenMPPreprocessor/example_support.C
+Scheduled for add      projects/OpenMPPreprocessor/example_support.c
+Scheduled for add      projects/OpenMPPreprocessor/intone.h
+Scheduled for add      projects/OpenMPPreprocessor/nanos.h
+Scheduled for add      projects/OpenMPPreprocessor/nanosBug.C
+Scheduled for add      projects/OpenMPPreprocessor/parallelSTLQuery.C
+Scheduled for add      projects/OpenMPPreprocessor/parallelSTLQuery.C.for_paper
+Scheduled for add      projects/OpenMPPreprocessor/parallelSTLQuery_testFile.C
+Scheduled for add      projects/OpenMPPreprocessor/testOpenMP_01.C
+Scheduled for add      projects/OpenMPPreprocessor/testOpenMP_02.C
+Scheduled for add      projects/OpenMPPreprocessor/testOpenMP_03.C
+Scheduled for add      projects/arrayOptimization/ArrayAnnot.C
+Scheduled for add      projects/arrayOptimization/ArrayAnnot.h
+Scheduled for add      projects/arrayOptimization/ArrayInterface.C
+Scheduled for add      projects/arrayOptimization/ArrayInterface.h
+Scheduled for add      projects/arrayOptimization/ArrayProcessor.C
+Scheduled for add      projects/arrayOptimization/ArrayRewrite.C
+Scheduled for add      projects/arrayOptimization/ArrayRewrite.h
+Scheduled for add      projects/arrayOptimization/Makefile.am
+Scheduled for add      projects/containerParallelizer/Container.annot
+Scheduled for add      projects/containerParallelizer/ContainerTransformer.C
+Scheduled for add      projects/containerParallelizer/Function.annot
+Scheduled for add      projects/containerParallelizer/Makefile.am
+Scheduled for add      projects/containerParallelizer/STLOpenMPTransformation.C
+Scheduled for add      projects/containerParallelizer/UserDefList.C
+Scheduled for add      projects/containerParallelizer/UserDefList.h
+Scheduled for add      projects/containerParallelizer/UserDefList2.C
+Scheduled for add      projects/containerParallelizer/UserDefList2b.C
+Scheduled for add      projects/containerParallelizer/UserDefList2c.C
+Scheduled for add      projects/containerParallelizer/UserDefList2d.C
+Scheduled for add      projects/containerParallelizer/UserDefList3.C
+Scheduled for add      projects/containerParallelizer/CPAnalysis/ContainerAnalyzer.C
+Scheduled for add      projects/containerParallelizer/CPAnalysis/Makefile.am
+Scheduled for add      projects/containerParallelizer/CPAnalysis/TestParallelLoop.C
+Scheduled for add      projects/containerParallelizer/CPAnalysis/TestParallelLoop.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformation.atg
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformation.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformationCocoCodes.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformationCocoErrorMessages.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformationParser.C
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformationParser.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/BodyTransformationParser_Declarations.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/Makefile.am
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformation.atg
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformationCocoCodes.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformationCocoErrorMessages.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformationParser.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/OmpLoopRATransformationParser_Declarations.h
+Scheduled for add      projects/containerParallelizer/CPTransformation/compiler.frm
+Scheduled for add      projects/containerParallelizer/CPTransformation/notes.txt
+Scheduled for add      projects/containerParallelizer/CPTransformation/parser_c.frm
+Scheduled for add      projects/containerParallelizer/CPTransformation/parser_h.frm
+Scheduled for add      projects/dataBase/DatabaseGraph.h
+Scheduled for add      projects/dataBase/GlobalDatabaseConnection.C.in
+Scheduled for add      projects/dataBase/GlobalDatabaseConnection.h
+Scheduled for add      projects/dataBase/Makefile.am
+Scheduled for add      projects/dataBase/TableAccess.C
+Scheduled for add      projects/dataBase/TableAccess.h
+Scheduled for add      projects/dataBase/TableAccessMacros.h
+Scheduled for add      projects/dataBase/TableDefinitions.h
+Scheduled for add      projects/dataBase/check_database.C
+Scheduled for add      projects/dataBase/createTableAccessMacros.pl
+Scheduled for add      projects/dataBase/simplecallgraph_testprogram.C
+Scheduled for add      projects/dataBase/testDataBase.C
+Scheduled for add      projects/dataStructureGraphing/Makefile.am
+Scheduled for add      projects/dataStructureGraphing/README.txt
+Scheduled for add      projects/dataStructureGraphing/accumulatorAttribute.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureFunction.C
+Scheduled for add      projects/dataStructureGraphing/dataStructurePreprocessor.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureTest_1.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureTest_2.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureTest_3.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureTransformation.C
+Scheduled for add      projects/dataStructureGraphing/dataStructureTransformation.h
+Scheduled for add      projects/dataStructureGraphing/inheritedAttribute.C
+Scheduled for add      projects/dataStructureGraphing/linkedListTestCode.C
+Scheduled for add      projects/dataStructureGraphing/linkedListTestCode.C~
+Scheduled for add      projects/dataStructureGraphing/nodeAttributeProperty.C
+Scheduled for add      projects/dataStructureGraphing/options.C
+Scheduled for add      projects/dataStructureGraphing/printData.C
+Scheduled for add      projects/dataStructureGraphing/printDataTest.C
+Scheduled for add      projects/dataStructureGraphing/sidlFunction.C
+Scheduled for add      projects/dataStructureGraphing/simpleA++.h
+Scheduled for add      projects/dataStructureGraphing/synthesizedAttribute.C
+Scheduled for add      projects/dataStructureGraphing/transformationOptions.C
+Scheduled for add      projects/dataStructureGraphing/transformationOptions.h
+Scheduled for add      projects/highLevelGrammars/AbstractionAttribute.C
+Scheduled for add      projects/highLevelGrammars/AbstractionAttribute.h
+Scheduled for add      projects/highLevelGrammars/ExampleUserCode.code
+Scheduled for add      projects/highLevelGrammars/GeneratedAbstractionCode.code
+Scheduled for add      projects/highLevelGrammars/GeneratedAbstractionRecognitionCode.code
+Scheduled for add      projects/highLevelGrammars/GeneratedLibraryCode.code
+Scheduled for add      projects/highLevelGrammars/Makefile.am
+Scheduled for add      projects/highLevelGrammars/approach.txt
+Scheduled for add      projects/highLevelGrammars/exampleTranslator.C
+Scheduled for add      projects/highLevelGrammars/highLevelGrammarGenerator.C
+Scheduled for add      projects/highLevelGrammars/nodeAndEdgeTypes.h
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorRepresentation.C
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.BottomUp.dot
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.Postorder.dot
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.Preorder.dot
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.TopDown.dot
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.TopDownBottomUp.dot
+Scheduled for add      projects/highLevelGrammars/overloadedOperatorTestCode.C.ps
+Scheduled for add      projects/highLevelGrammars/simpleA++.h
+Scheduled for add      projects/highLevelGrammars/test.ps
+Scheduled for add      projects/highLevelGrammars/testApp.C
+Scheduled for add      projects/highLevelGrammars/testCode.C
+Scheduled for add      projects/highLevelGrammars/testEnum.C
+Scheduled for add      projects/highLevelGrammars/testEnum.o
+Scheduled for add      proposals/Makefile.am
+Scheduled for add      proposals/RoseProposedDirectoryStructure.txt
+Scheduled for add      proposals/RoseProposedDirectoryStructureOnePage.ps
+Scheduled for add      proposals/StudentWork.txt
+Scheduled for add      proposals/documentationRequirements.txt
+Scheduled for add      proposals/preprocessorMacroFixup.txt
+Scheduled for add      scripts/Makefile.am
+Scheduled for add      scripts/README
+Scheduled for add      scripts/check-dist-file
+Scheduled for add      scripts/configure_with_SQL
+Scheduled for add      scripts/cvschk
+Scheduled for add      scripts/dotgen
+Scheduled for add      scripts/dotgen2
+Scheduled for add      scripts/dotgenLetter
+Scheduled for add      scripts/find_cvs_conflicts
+Scheduled for add      scripts/generateDirectoryGraph
+Scheduled for add      scripts/lsdot
+Scheduled for add      scripts/printConstructors
+Scheduled for add      scripts/rcdf-config
+Scheduled for add      scripts/remote-check-dist-file
+Scheduled for add      scripts/runscript
+Scheduled for add      scripts/standard-remote-check-dist-file
+Scheduled for add      src/roseTranslatorToTestBuild.C
+Scheduled for add      src/3rdPartyLibraries/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/MSTL/AttributeMechanism.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/AttributeMechanism.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTGeneration.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTGeneration.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTGraphInterface.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTGraphInterface.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTRepresentation.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTRepresentation.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/DOTSubgraphRepresentation.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/MSTL.docs
+Scheduled for add      src/3rdPartyLibraries/MSTL/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/MSTL/PDFGeneration.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/PDFGeneration.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/Translator.h
+Scheduled for add      src/3rdPartyLibraries/MSTL/TreeTraversal.C
+Scheduled for add      src/3rdPartyLibraries/MSTL/TreeTraversal.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/Makefile.am~
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/e_ansi.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/e_ebcdic.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/e_macroman.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_afm.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_annots.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_basic.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_ccitt.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_cid.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_color.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_config.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_draw.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_filter.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_font.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_font.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_gif.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_gstate.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_hyper.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_image.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_intern.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_jpeg.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_metrics.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_pfm.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_png.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_stream.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_text.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_tiff.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/p_util.c
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/pdflib.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/pdftest.pdf
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/resource.h
+Scheduled for add      src/3rdPartyLibraries/PDFLibrary/testpdf.C
+Scheduled for add      src/3rdPartyLibraries/coco/Coco.Report.ps
+Scheduled for add      src/3rdPartyLibraries/coco/Coco.Report.ps.Z
+Scheduled for add      src/3rdPartyLibraries/coco/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/coco/cb.sh
+Scheduled for add      src/3rdPartyLibraries/coco/cocorc17.tgz
+Scheduled for add      src/3rdPartyLibraries/coco/dos2unix.sh
+Scheduled for add      src/3rdPartyLibraries/coco/dos2unix.uue
+Scheduled for add      src/3rdPartyLibraries/coco/history
+Scheduled for add      src/3rdPartyLibraries/coco/read.me
+Scheduled for add      src/3rdPartyLibraries/coco/readme.1st
+Scheduled for add      src/3rdPartyLibraries/coco/unix.mk
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/Makefile.am~
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_abs.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_abs.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_error.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_error.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_parse.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_parse.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_scan.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/cr_scan.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/cplus2/unix.mk
+Scheduled for add      src/3rdPartyLibraries/coco/docs/coco.use
+Scheduled for add      src/3rdPartyLibraries/coco/docs/cocol
+Scheduled for add      src/3rdPartyLibraries/coco/docs/cocol.ps
+Scheduled for add      src/3rdPartyLibraries/coco/docs/cocor.1
+Scheduled for add      src/3rdPartyLibraries/coco/frames/compiler.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/parser_c.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/parser_h.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/scan_c.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/scan_h.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/ChangeLog.txt
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/compiler.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/parser_c.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/parser_h.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/scan_c.frm
+Scheduled for add      src/3rdPartyLibraries/coco/frames/cplus2/scan_h.frm
+Scheduled for add      src/3rdPartyLibraries/coco/samples/adacs.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/c.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/calc.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/calc.inp
+Scheduled for add      src/3rdPartyLibraries/coco/samples/cdecl.inp
+Scheduled for add      src/3rdPartyLibraries/coco/samples/cdecl1.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/cdecl2.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/cdecl3.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/clang.inp
+Scheduled for add      src/3rdPartyLibraries/coco/samples/clang1.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/clang2.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/expr.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/expr.inp
+Scheduled for add      src/3rdPartyLibraries/coco/samples/microada.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/mod2.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/oberon.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/pascal.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/pimmod2.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/umbriel1.atg
+Scheduled for add      src/3rdPartyLibraries/coco/samples/umbriel2.atg
+Scheduled for add      src/3rdPartyLibraries/coco/sources/Makefile.am
+Scheduled for add      src/3rdPartyLibraries/coco/sources/Makefile.am~
+Scheduled for add      src/3rdPartyLibraries/coco/sources/collect.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/collect.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cr.atg
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cr.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cr.frm
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cra.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cra.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crc.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/cre.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crf.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crf.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crp.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crp.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crs.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crs.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crt.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crt.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crx.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/crx.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/set.c
+Scheduled for add      src/3rdPartyLibraries/coco/sources/set.h
+Scheduled for add      src/3rdPartyLibraries/coco/sources/unix.mk
+Scheduled for add      src/3rdPartyLibraries/coco/sources/test/check
+Scheduled for add      src/3rdPartyLibraries/coco/taste/crossref.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/crossref.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/pretty.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste/pretty.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/prettypr.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/prettypr.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slang
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slang.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slang.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangc.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slange.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangp.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangp.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangs.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangs.c.bak
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangs.c.new
+Scheduled for add      src/3rdPartyLibraries/coco/taste/slangs.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/taste.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste/taste.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/taste.frm
+Scheduled for add      src/3rdPartyLibraries/coco/taste/tc.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/tc.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/test.sla
+Scheduled for add      src/3rdPartyLibraries/coco/taste/test.tas
+Scheduled for add      src/3rdPartyLibraries/coco/taste/tl.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/tl.h
+Scheduled for add      src/3rdPartyLibraries/coco/taste/unix.mk
+Scheduled for add      src/3rdPartyLibraries/coco/taste/wrong.tas
+Scheduled for add      src/3rdPartyLibraries/coco/taste/xref.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste/xref.c
+Scheduled for add      src/3rdPartyLibraries/coco/taste/xref.frm
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/crossref.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/crossref.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/myslang
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/myslang.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/pretty.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/prettypr.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/prettypr.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slang
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slang.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slang.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slangc.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slange.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slangp.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slangp.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slangs.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/slangs.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/taste.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/taste.frm
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/tc.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/tc.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/test.sla
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/test.tas
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/tl.cpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/tl.hpp
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/unix.mk
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/wrong.tas
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/xref.atg
+Scheduled for add      src/3rdPartyLibraries/coco/taste_cp/xref.frm
+Scheduled for add      src/ROSETTA/ArrayGrammar.cfg
+Scheduled for add      src/ROSETTA/Constraints.txt
+Scheduled for add      src/ROSETTA/How_To_Build_A_Preprocessor.txt
+Scheduled for add      src/ROSETTA/Makefile.am
+Scheduled for add      src/ROSETTA/README
+Scheduled for add      src/ROSETTA/ROSE_ArrayGrammar.C
+Scheduled for add      src/ROSETTA/ROSE_ArrayGrammar.h
+Scheduled for add      src/ROSETTA/ROSE_CxxGrammar.cfg
+Scheduled for add      src/ROSETTA/ROSE_Node.h
+Scheduled for add      src/ROSETTA/TO_DO.txt
+Scheduled for add      src/ROSETTA/array.C.removeTerminalExample
+Scheduled for add      src/ROSETTA/array.C.two_grammars
+Scheduled for add      src/ROSETTA/debugMacros.h
+Scheduled for add      src/ROSETTA/rosetta.cfg
+Scheduled for add      src/ROSETTA/stamp-h.in
+Scheduled for add      src/ROSETTA/terminal.C.old
+Scheduled for add      src/ROSETTA/transformationDesign.txt
+Scheduled for add      src/ROSETTA/treeTraversal.txt
+Scheduled for add      src/ROSETTA/Grammar/Common.code
+Scheduled for add      src/ROSETTA/Grammar/Cxx_GlobalDeclarations.macro
+Scheduled for add      src/ROSETTA/Grammar/Cxx_Support_Header.macro
+Scheduled for add      src/ROSETTA/Grammar/Expression.code
+Scheduled for add      src/ROSETTA/Grammar/LocatedNode.code
+Scheduled for add      src/ROSETTA/Grammar/Node.code
+Scheduled for add      src/ROSETTA/Grammar/README
+Scheduled for add      src/ROSETTA/Grammar/Statement.code
+Scheduled for add      src/ROSETTA/Grammar/Support.code
+Scheduled for add      src/ROSETTA/Grammar/Support.code.b00
+Scheduled for add      src/ROSETTA/Grammar/Support.code.original
+Scheduled for add      src/ROSETTA/Grammar/Support.code.prelinkSupport
+Scheduled for add      src/ROSETTA/Grammar/Symbol.code
+Scheduled for add      src/ROSETTA/Grammar/Type.code
+Scheduled for add      src/ROSETTA/Grammar/copyMemberFunction.macro
+Scheduled for add      src/ROSETTA/Grammar/dataMemberAccessFunctions.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarClassDeclatationMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarClassDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarConstructorDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarDestructorDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarIsClassNameFunctionDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarMainClassDeclatationMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarMainClassParseFunctionSourceCode.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarMainClassSourceCodeMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/grammarVariantFunctionDefinitionMacros.macro
+Scheduled for add      src/ROSETTA/Grammar/node.macro
+Scheduled for add      src/ROSETTA/Grammar/parserCode.macro
+Scheduled for add      src/ROSETTA/Grammar/parserPrototype.macro
+Scheduled for add      src/ROSETTA/Grammar/parserSourceCode.macro
+Scheduled for add      src/ROSETTA/Grammar/removingSetParentFunction.txt
+Scheduled for add      src/ROSETTA/Grammar/split.C
+Scheduled for add      src/ROSETTA/src/CxxGrammarMetaProgram.C
+Scheduled for add      src/ROSETTA/src/Makefile.am
+Scheduled for add      src/ROSETTA/src/Makefile.am~
+Scheduled for add      src/ROSETTA/src/ROSETTA_macros.h
+Scheduled for add      src/ROSETTA/src/addNonTerminal.C
+Scheduled for add      src/ROSETTA/src/addTerminal.C
+Scheduled for add      src/ROSETTA/src/constraint.C
+Scheduled for add      src/ROSETTA/src/constraint.h
+Scheduled for add      src/ROSETTA/src/constraintList.C
+Scheduled for add      src/ROSETTA/src/constraintList.h
+Scheduled for add      src/ROSETTA/src/expression.C
+Scheduled for add      src/ROSETTA/src/grammar.C
+Scheduled for add      src/ROSETTA/src/grammar.h
+Scheduled for add      src/ROSETTA/src/grammarString.C
+Scheduled for add      src/ROSETTA/src/grammarString.h
+Scheduled for add      src/ROSETTA/src/grammarTreeNode.C
+Scheduled for add      src/ROSETTA/src/grammarTreeNode.h
+Scheduled for add      src/ROSETTA/src/node.C
+Scheduled for add      src/ROSETTA/src/nonTerminalList.C
+Scheduled for add      src/ROSETTA/src/nonterminal.C
+Scheduled for add      src/ROSETTA/src/nonterminal.h
+Scheduled for add      src/ROSETTA/src/statement.C
+Scheduled for add      src/ROSETTA/src/support.C
+Scheduled for add      src/ROSETTA/src/symbol.C
+Scheduled for add      src/ROSETTA/src/terminal.C
+Scheduled for add      src/ROSETTA/src/terminal.h
+Scheduled for add      src/ROSETTA/src/terminalList.C
+Scheduled for add      src/ROSETTA/src/terminalList.h
+Scheduled for add      src/ROSETTA/src/type.C
+Scheduled for add      src/backend/Makefile.am
+Scheduled for add      src/backend/unparser/Makefile.am
+Scheduled for add      src/backend/unparser/Unparser_README.txt
+Scheduled for add      src/backend/unparser/dependencies.incl
+Scheduled for add      src/backend/unparser/dependencies.incl.new
+Scheduled for add      src/backend/unparser/ir.out
+Scheduled for add      src/backend/unparser/modified_sage.C
+Scheduled for add      src/backend/unparser/sage_bugs.txt
+Scheduled for add      src/backend/unparser/unparse_expr.C
+Scheduled for add      src/backend/unparser/unparse_format.C
+Scheduled for add      src/backend/unparser/unparse_format.h
+Scheduled for add      src/backend/unparser/unparse_stmt.C
+Scheduled for add      src/backend/unparser/unparse_support.C
+Scheduled for add      src/backend/unparser/unparse_sym.C
+Scheduled for add      src/backend/unparser/unparse_type.C
+Scheduled for add      src/backend/unparser/unparser.C
+Scheduled for add      src/backend/unparser/unparser.docs
+Scheduled for add      src/backend/unparser/unparser.h
+Scheduled for add      src/backend/unparser/unparser_opt.C
+Scheduled for add      src/backend/unparser/unparser_opt.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/documentation.docs
+Scheduled for add      src/frontend/SageIII/AstFixes.C
+Scheduled for add      src/frontend/SageIII/AstFixes.h
+Scheduled for add      src/frontend/SageIII/C++_include_files.h
+Scheduled for add      src/frontend/SageIII/Makefile.am
+Scheduled for add      src/frontend/SageIII/README
+Scheduled for add      src/frontend/SageIII/attachPreprocessingInfo.C
+Scheduled for add      src/frontend/SageIII/attachPreprocessingInfo.h
+Scheduled for add      src/frontend/SageIII/generateAST.C
+Scheduled for add      src/frontend/SageIII/grammarBaseClass.C
+Scheduled for add      src/frontend/SageIII/grammarBaseClass.h
+Scheduled for add      src/frontend/SageIII/insert.C
+Scheduled for add      src/frontend/SageIII/rose_attributes_list.C
+Scheduled for add      src/frontend/SageIII/rose_attributes_list.h
+Scheduled for add      src/frontend/SageIII/sage.docs.in
+Scheduled for add      src/frontend/SageIII/sage3.h
+Scheduled for add      src/frontend/SageIII/sageClasses.docs
+Scheduled for add      src/frontend/SageIII/sla.h
+Scheduled for add      src/frontend/SageIII/stamp-h.in
+Scheduled for add      src/frontend/SageIII/stripWrapper.C
+Scheduled for add      src/midend/Makefile.am
+Scheduled for add      src/midend/astProcessing/AgDefaultError.C
+Scheduled for add      src/midend/astProcessing/AgDefaultError.h
+Scheduled for add      src/midend/astProcessing/AgProcessing.C
+Scheduled for add      src/midend/astProcessing/AgProcessing.h
+Scheduled for add      src/midend/astProcessing/Ast.C
+Scheduled for add      src/midend/astProcessing/Ast.h
+Scheduled for add      src/midend/astProcessing/AstAttributeMechanism.h
+Scheduled for add      src/midend/astProcessing/AstClearVisitFlags.C
+Scheduled for add      src/midend/astProcessing/AstClearVisitFlags.h
+Scheduled for add      src/midend/astProcessing/AstDOTGeneration.C
+Scheduled for add      src/midend/astProcessing/AstDOTGeneration.h
+Scheduled for add      src/midend/astProcessing/AstNodePtrs.C
+Scheduled for add      src/midend/astProcessing/AstNodePtrs.h
+Scheduled for add      src/midend/astProcessing/AstNodeScanner.C
+Scheduled for add      src/midend/astProcessing/AstNodeScanner.h
+Scheduled for add      src/midend/astProcessing/AstNodeVisitMapping.C
+Scheduled for add      src/midend/astProcessing/AstNodeVisitMapping.h
+Scheduled for add      src/midend/astProcessing/AstPDFGeneration.C
+Scheduled for add      src/midend/astProcessing/AstPDFGeneration.h
+Scheduled for add      src/midend/astProcessing/AstProcessing.C
+Scheduled for add      src/midend/astProcessing/AstProcessing.docs
+Scheduled for add      src/midend/astProcessing/AstProcessing.h
+Scheduled for add      src/midend/astProcessing/AstRestructure.C
+Scheduled for add      src/midend/astProcessing/AstRestructure.h
+Scheduled for add      src/midend/astProcessing/AstReverseProcessing.C
+Scheduled for add      src/midend/astProcessing/AstReverseProcessing.h
+Scheduled for add      src/midend/astProcessing/AstReverseSimpleProcessing.C
+Scheduled for add      src/midend/astProcessing/AstReverseSimpleProcessing.h
+Scheduled for add      src/midend/astProcessing/AstSimpleProcessing.C
+Scheduled for add      src/midend/astProcessing/AstSimpleProcessing.h
+Scheduled for add      src/midend/astProcessing/AstStatistics.C
+Scheduled for add      src/midend/astProcessing/AstStatistics.h
+Scheduled for add      src/midend/astProcessing/AstSuccessorsSelectors.C
+Scheduled for add      src/midend/astProcessing/AstSuccessorsSelectors.h
+Scheduled for add      src/midend/astProcessing/AstTests.C
+Scheduled for add      src/midend/astProcessing/AstTests.h
+Scheduled for add      src/midend/astProcessing/AstTextAttributesHandling.C
+Scheduled for add      src/midend/astProcessing/AstTextAttributesHandling.h
+Scheduled for add      src/midend/astProcessing/AstTraversal.C
+Scheduled for add      src/midend/astProcessing/AstTraversal.h
+Scheduled for add      src/midend/astProcessing/AstTraverseToRoot.h
+Scheduled for add      src/midend/astProcessing/Makefile.am
+Scheduled for add      src/midend/astProcessing/abstractcppgrammar.atg
+Scheduled for add      src/midend/astProcessing/sgnode.cpp
+Scheduled for add      src/midend/astProcessing/sgnodec.hpp
+Scheduled for add      src/midend/astProcessing/sgnodee.hpp
+Scheduled for add      src/midend/astProcessing/sgnodep.cpp
+Scheduled for add      src/midend/astProcessing/sgnodep.hpp
+Scheduled for add      src/midend/astProcessing/sgnodes.hpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/Makefile.am
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agpp.atg
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agpp.cpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agppc.hpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agppe.hpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agppp.cpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agppp.hpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agpps.cpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/agpps.hpp
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/collect.c
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/collect.h
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/compile
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cra.h
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/crt.h
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/crx.h
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/set.c
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/set.h
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/compiler.frm
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/cr.frm
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/parser_c.frm
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/parser_h.frm
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/scan_c.frm
+Scheduled for add      src/midend/astProcessing/CocoPreprocessor/cplus2/scan_h.frm
+Scheduled for add      src/midend/astQuery/Makefile.am
+Scheduled for add      src/midend/astQuery/QueryLib.docs
+Scheduled for add      src/midend/astQuery/booleanQuery.C
+Scheduled for add      src/midend/astQuery/booleanQuery.h
+Scheduled for add      src/midend/astQuery/booleanQueryInheritedAttribute.C
+Scheduled for add      src/midend/astQuery/booleanQueryInheritedAttribute.h
+Scheduled for add      src/midend/astQuery/nameQuery.C
+Scheduled for add      src/midend/astQuery/nameQuery.h
+Scheduled for add      src/midend/astQuery/nameQueryInheritedAttribute.C
+Scheduled for add      src/midend/astQuery/nameQueryInheritedAttribute.h
+Scheduled for add      src/midend/astQuery/nodeQuery.C
+Scheduled for add      src/midend/astQuery/nodeQuery.h
+Scheduled for add      src/midend/astQuery/nodeQueryInheritedAttribute.C
+Scheduled for add      src/midend/astQuery/nodeQueryInheritedAttribute.h
+Scheduled for add      src/midend/astQuery/numberQuery.C
+Scheduled for add      src/midend/astQuery/numberQuery.h
+Scheduled for add      src/midend/astQuery/numberQueryInheritedAttribute.C
+Scheduled for add      src/midend/astQuery/numberQueryInheritedAttribute.h
+Scheduled for add      src/midend/astQuery/roseQueryLib.h
+Scheduled for add      src/midend/astRewriteMechanism/ASTFragmentCollectorTraversal.C
+Scheduled for add      src/midend/astRewriteMechanism/ASTRewrite.docs
+Scheduled for add      src/midend/astRewriteMechanism/DesignGoals.txt
+Scheduled for add      src/midend/astRewriteMechanism/Makefile.am
+Scheduled for add      src/midend/astRewriteMechanism/highLevelRewriteInterface.h
+Scheduled for add      src/midend/astRewriteMechanism/inputProgram1.C
+Scheduled for add      src/midend/astRewriteMechanism/inputProgram2.C
+Scheduled for add      src/midend/astRewriteMechanism/inputProgram3.C
+Scheduled for add      src/midend/astRewriteMechanism/inputProgram4.C
+Scheduled for add      src/midend/astRewriteMechanism/lowLevelRewriteInterface.h
+Scheduled for add      src/midend/astRewriteMechanism/midLevelRewriteInterface.h
+Scheduled for add      src/midend/astRewriteMechanism/nodeCollection.C
+Scheduled for add      src/midend/astRewriteMechanism/nodeCollectionTemplates.C
+Scheduled for add      src/midend/astRewriteMechanism/prefixDesign.txt
+Scheduled for add      src/midend/astRewriteMechanism/prefixGeneration.C
+Scheduled for add      src/midend/astRewriteMechanism/reverseTraversalProblem.txt
+Scheduled for add      src/midend/astRewriteMechanism/rewrite.h
+Scheduled for add      src/midend/astRewriteMechanism/rewriteASTFragementString.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteASTFragementStringTemplates.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteAccumulatedAttribute.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteDebuggingSupport.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteDebuggingSupportTemplates.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteDesign.txt
+Scheduled for add      src/midend/astRewriteMechanism/rewriteHighLevelInterface.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteLowLevelInterface.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteMidLevelInterface.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteMidLevelInterfaceTemplates.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteSynthesizedAttribute.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteSynthesizedAttributeTemplates.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteTreeTraversal.C
+Scheduled for add      src/midend/astRewriteMechanism/rewriteTypeDeclaration.C
+Scheduled for add      src/midend/astUtil/Makefile.am
+Scheduled for add      src/midend/astUtil/annotation/AnnotCollect.C
+Scheduled for add      src/midend/astUtil/annotation/AnnotCollect.h
+Scheduled for add      src/midend/astUtil/annotation/AnnotDescriptors.C
+Scheduled for add      src/midend/astUtil/annotation/AnnotDescriptors.h
+Scheduled for add      src/midend/astUtil/annotation/AnnotExpr.C
+Scheduled for add      src/midend/astUtil/annotation/AnnotExpr.h
+Scheduled for add      src/midend/astUtil/annotation/AnnotIO.C
+Scheduled for add      src/midend/astUtil/annotation/AnnotIO.h
+Scheduled for add      src/midend/astUtil/annotation/AnnotStmt.h
+Scheduled for add      src/midend/astUtil/annotation/Makefile.am
+Scheduled for add      src/midend/astUtil/annotation/OperatorAnnotation.C
+Scheduled for add      src/midend/astUtil/annotation/OperatorAnnotation.h
+Scheduled for add      src/midend/astUtil/annotation/OperatorDescriptors.C
+Scheduled for add      src/midend/astUtil/annotation/OperatorDescriptors.h
+Scheduled for add      src/midend/astUtil/annotation/TypeAnnotation.C
+Scheduled for add      src/midend/astUtil/annotation/TypeAnnotation.h
+Scheduled for add      src/midend/astUtil/astInterface/AstInterface.C
+Scheduled for add      src/midend/astUtil/astInterface/AstInterface.h
+Scheduled for add      src/midend/astUtil/astInterface/CPPAstInterface.C
+Scheduled for add      src/midend/astUtil/astInterface/CPPAstInterface.h
+Scheduled for add      src/midend/astUtil/astInterface/CheckSymbolTable.C
+Scheduled for add      src/midend/astUtil/astInterface/CheckSymbolTable.h
+Scheduled for add      src/midend/astUtil/astInterface/Makefile.am
+Scheduled for add      src/midend/astUtil/astSupport/AnalysisInterface.h
+Scheduled for add      src/midend/astUtil/astSupport/Makefile.am
+Scheduled for add      src/midend/astUtil/astSupport/ProcessAstTree.C
+Scheduled for add      src/midend/astUtil/astSupport/ProcessAstTree.h
+Scheduled for add      src/midend/astUtil/astSupport/StmtInfoCollect.C
+Scheduled for add      src/midend/astUtil/astSupport/StmtInfoCollect.h
+Scheduled for add      src/midend/astUtil/symbolicVal/Makefile.am
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicBound.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicExpr.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicExpr.h
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicFind.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicMultiply.h
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicOperator.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicPlus.h
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicSelect.h
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicUnwrapCond.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicVal.C
+Scheduled for add      src/midend/astUtil/symbolicVal/SymbolicVal.h
+Scheduled for add      src/midend/loopProcessing/HackTemplate.C
+Scheduled for add      src/midend/loopProcessing/LoopTransformInterface.C
+Scheduled for add      src/midend/loopProcessing/LoopTransformInterface.h
+Scheduled for add      src/midend/loopProcessing/Makefile.am
+Scheduled for add      src/midend/loopProcessing/computation/LoopInfo.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTree.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTree.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeBuild.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeDepComp.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeDepComp.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeDummyNode.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeDummyNode.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeHoldNode.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeLocality.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeNodeType.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeObserver.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeOptimize.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeShadow.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeShadow.h
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeTransform.C
+Scheduled for add      src/midend/loopProcessing/computation/LoopTreeTransform.h
+Scheduled for add      src/midend/loopProcessing/computation/Makefile.am
+Scheduled for add      src/midend/loopProcessing/depGraph/DepGraph.h
+Scheduled for add      src/midend/loopProcessing/depGraph/DepGraphBuild.C
+Scheduled for add      src/midend/loopProcessing/depGraph/DepGraphBuild.h
+Scheduled for add      src/midend/loopProcessing/depGraph/DepGraphTransform.C
+Scheduled for add      src/midend/loopProcessing/depGraph/DepGraphTransform.h
+Scheduled for add      src/midend/loopProcessing/depGraph/LoopAnalysis.C
+Scheduled for add      src/midend/loopProcessing/depGraph/LoopAnalysis.h
+Scheduled for add      src/midend/loopProcessing/depGraph/Makefile.am
+Scheduled for add      src/midend/loopProcessing/depGraph/TransDepGraph.C
+Scheduled for add      src/midend/loopProcessing/depGraph/TransDepGraph.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepEDD.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepEDD.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfo.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfo.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoAnal.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoAnal.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoAnalImpl.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoSet.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoSet.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepInfoUpdate.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DepRel.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DepRel.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DomainInfo.C
+Scheduled for add      src/midend/loopProcessing/depInfo/DomainInfo.h
+Scheduled for add      src/midend/loopProcessing/depInfo/DomainInfoUpdate.h
+Scheduled for add      src/midend/loopProcessing/depInfo/Makefile.am
+Scheduled for add      src/midend/loopProcessing/depInfo/StmtDepAnal.C
+Scheduled for add      src/midend/loopProcessing/driver/BlockingAnal.C
+Scheduled for add      src/midend/loopProcessing/driver/BlockingAnal.h
+Scheduled for add      src/midend/loopProcessing/driver/FusionAnal.C
+Scheduled for add      src/midend/loopProcessing/driver/FusionAnal.h
+Scheduled for add      src/midend/loopProcessing/driver/InterchangeAnal.C
+Scheduled for add      src/midend/loopProcessing/driver/InterchangeAnal.h
+Scheduled for add      src/midend/loopProcessing/driver/LoopTransformOptions.C
+Scheduled for add      src/midend/loopProcessing/driver/LoopTransformOptions.h
+Scheduled for add      src/midend/loopProcessing/driver/Makefile.am
+Scheduled for add      src/midend/loopProcessing/driver/TransformAstTree.C
+Scheduled for add      src/midend/loopProcessing/driver/TransformAstTree.h
+Scheduled for add      src/midend/loopProcessing/driver/TransformComputation.C
+Scheduled for add      src/midend/loopProcessing/driver/TypedFusionImpl.C
+Scheduled for add      src/midend/loopProcessing/slicing/CompSlice.C
+Scheduled for add      src/midend/loopProcessing/slicing/CompSlice.h
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceDepGraph.C
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceDepGraph.h
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceImpl.h
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceLocality.C
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceLocality.h
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceObserver.h
+Scheduled for add      src/midend/loopProcessing/slicing/CompSliceRegistry.h
+Scheduled for add      src/midend/loopProcessing/slicing/DependenceHoisting.C
+Scheduled for add      src/midend/loopProcessing/slicing/DynamicCompSlice.C
+Scheduled for add      src/midend/loopProcessing/slicing/DynamicCompSlice.h
+Scheduled for add      src/midend/loopProcessing/slicing/Makefile.am
+Scheduled for add      src/midend/programAnalysis/Makefile.am
+Scheduled for add      src/midend/programAnalysis/CFG/CFG.h
+Scheduled for add      src/midend/programAnalysis/CFG/CFGImpl.C
+Scheduled for add      src/midend/programAnalysis/CFG/CFGImpl.h
+Scheduled for add      src/midend/programAnalysis/CFG/CFGTest.C
+Scheduled for add      src/midend/programAnalysis/CFG/CFG_OA.C
+Scheduled for add      src/midend/programAnalysis/CFG/CFG_ROSE.C
+Scheduled for add      src/midend/programAnalysis/CFG/Makefile.am
+Scheduled for add      src/midend/programAnalysis/CFG/cfgtestfile.c
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/Callgraph.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/Callgraph.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/Classhierarchy.C
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/Classhierarchy.h
+Scheduled for add      src/midend/programAnalysis/CallGraphAnalysis/callgraph_example.C
+Scheduled for add      src/midend/programAnalysis/Interface/CPPAstInterface.C
+Scheduled for add      src/midend/programAnalysis/Interface/CPPAstInterface.h
+Scheduled for add      src/midend/programAnalysis/Interface/Makefile.am
+Scheduled for add      src/midend/programAnalysis/Interface/StmtInfoAnal.C
+Scheduled for add      src/midend/programAnalysis/Interface/StmtInfoAnal.h
+Scheduled for add      src/midend/programAnalysis/OAWrap/Makefile.am
+Scheduled for add      src/midend/programAnalysis/OAWrap/OAConfig.h
+Scheduled for add      src/midend/programAnalysis/OAWrap/OAWrap.C
+Scheduled for add      src/midend/programAnalysis/OAWrap/OAWrap.h
+Scheduled for add      src/midend/programAnalysis/OAWrap/SAGE2OA.C
+Scheduled for add      src/midend/programAnalysis/OAWrap/SAGE2OA.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/CFG.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/CFG.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/Makefile
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/OARIFG.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/OARIFG.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/RIFG.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/TarjanIntervals.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CFG/TarjanIntervals.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CallGraph/CallGraph.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CallGraph/CallGraph.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/CallGraph/Makefile
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Interface/IRInterface.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/DomTree.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/DomTree.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/Makefile
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/Phi.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/Phi.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/SSA.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/SSA/SSA.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/BaseGraph.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/BaseGraph.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/DGraph.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/DGraph.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Exception.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Graph.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Graph.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Iterator.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Makefile
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Tree.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/Tree.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/UnionFindUniverse.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/UnionFindUniverse.h
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/grtest.C
+Scheduled for add      src/midend/programAnalysis/OpenAnalysis/Utils/trtest.C
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.C
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/DataFlowAnalysis.h
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/DataFlowTest.C
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/DefUseChain.C
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/DefUseChain.h
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/Makefile.am
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.C
+Scheduled for add      src/midend/programAnalysis/dataflowAnalysis/ReachingDefinition.h
+Scheduled for add      src/midend/programAnalysis/valuePropagation/Makefile.am
+Scheduled for add      src/midend/programAnalysis/valuePropagation/ValueAnnot.C
+Scheduled for add      src/midend/programAnalysis/valuePropagation/ValueAnnot.h
+Scheduled for add      src/midend/programAnalysis/valuePropagation/ValuePropagate.C
+Scheduled for add      src/midend/programAnalysis/valuePropagation/ValuePropagate.h
+Scheduled for add      src/util/Makefile.am
+Scheduled for add      src/util/setup.h
+Scheduled for add      src/util/utilDocumentation.docs
+Scheduled for add      src/util/commandlineProcessing/Makefile.am
+Scheduled for add      src/util/commandlineProcessing/commandlineProcessingDocumentation.docs
+Scheduled for add      src/util/commandlineProcessing/commandline_processing.C
+Scheduled for add      src/util/commandlineProcessing/commandline_processing.h
+Scheduled for add      src/util/commandlineProcessing/sla++.C
+Scheduled for add      src/util/commandlineProcessing/sla.c
+Scheduled for add      src/util/commandlineProcessing/sla.h
+Scheduled for add      src/util/graphs/BaseGraphCreate.h
+Scheduled for add      src/util/graphs/BaseGraphTemp.h
+Scheduled for add      src/util/graphs/DGBaseGraphImpl.C
+Scheduled for add      src/util/graphs/DGBaseGraphImpl.h
+Scheduled for add      src/util/graphs/DGBaseGraphTemp.h
+Scheduled for add      src/util/graphs/Dump.C
+Scheduled for add      src/util/graphs/GraphDotOutput.h
+Scheduled for add      src/util/graphs/GraphGroup.h
+Scheduled for add      src/util/graphs/GraphInterface.h
+Scheduled for add      src/util/graphs/GraphScope.h
+Scheduled for add      src/util/graphs/GraphTemplate.h
+Scheduled for add      src/util/graphs/GraphUpdate.h
+Scheduled for add      src/util/graphs/IDGraphCreate.C
+Scheduled for add      src/util/graphs/IDGraphCreate.h
+Scheduled for add      src/util/graphs/IDGraphCreateTemp.h
+Scheduled for add      src/util/graphs/Makefile.am
+Scheduled for add      src/util/graphs/SCCAnalysis.C
+Scheduled for add      src/util/graphs/SCCAnalysis.h
+Scheduled for add      src/util/graphs/TransAnalysis.C
+Scheduled for add      src/util/graphs/TransAnalysis.h
+Scheduled for add      src/util/graphs/TypedFusion.C
+Scheduled for add      src/util/graphs/TypedFusion.h
+Scheduled for add      src/util/stringSupport/Makefile.am
+Scheduled for add      src/util/stringSupport/roseString.C
+Scheduled for add      src/util/stringSupport/roseString.h
+Scheduled for add      src/util/stringSupport/stringSupportDocumentation.docs
+Scheduled for add      src/util/stringSupport/string_functions.C
+Scheduled for add      src/util/stringSupport/string_functions.h
+Scheduled for add      src/util/stringSupport/testStrings.C
+Scheduled for add      src/util/support/Adaptors.h
+Scheduled for add      src/util/support/BitVectorRepr.h
+Scheduled for add      src/util/support/CommandOptions.C
+Scheduled for add      src/util/support/CommandOptions.h
+Scheduled for add      src/util/support/CountRefHandle.h
+Scheduled for add      src/util/support/DAG.C
+Scheduled for add      src/util/support/DAG.h
+Scheduled for add      src/util/support/DirectedGraph.C
+Scheduled for add      src/util/support/DirectedGraph.h
+Scheduled for add      src/util/support/DoublyLinkedList.h
+Scheduled for add      src/util/support/FunctionObject.h
+Scheduled for add      src/util/support/IteratorCompound.h
+Scheduled for add      src/util/support/IteratorTmpl.h
+Scheduled for add      src/util/support/LatticeElemList.h
+Scheduled for add      src/util/support/Makefile.am
+Scheduled for add      src/util/support/Matrix.h
+Scheduled for add      src/util/support/ObserveObject.h
+Scheduled for add      src/util/support/PtrMap.h
+Scheduled for add      src/util/support/PtrSet.h
+Scheduled for add      src/util/support/SinglyLinkedList.h
+Scheduled for add      src/util/support/StreamIO.h
+Scheduled for add      src/util/support/TreeImpl.h
+Scheduled for add      src/util/support/const.h
+Scheduled for add      src/util/support/general.h
+Scheduled for add      src/util/support/union_find.h
+Scheduled for add      tests/Makefile.am
+Scheduled for add      tests/README
+Scheduled for add      tests/testTranslator.C
+Scheduled for add      tests/tests.tex
+Scheduled for add      tests/CompileTests/Makefile.am
+Scheduled for add      tests/CompileTests/README
+Scheduled for add      tests/CompileTests/A++Code/A++.h
+Scheduled for add      tests/CompileTests/A++Code/A++Test.C
+Scheduled for add      tests/CompileTests/A++Code/A++_headers.h
+Scheduled for add      tests/CompileTests/A++Code/A++_notemplates.h
+Scheduled for add      tests/CompileTests/A++Code/A++_templates.h
+Scheduled for add      tests/CompileTests/A++Code/Makefile.am
+Scheduled for add      tests/CompileTests/A++Code/abstract_op.C
+Scheduled for add      tests/CompileTests/A++Code/array_domain.h
+Scheduled for add      tests/CompileTests/A++Code/array_notemplates.C
+Scheduled for add      tests/CompileTests/A++Code/comm_man.C
+Scheduled for add      tests/CompileTests/A++Code/comm_man.h
+Scheduled for add      tests/CompileTests/A++Code/config.h
+Scheduled for add      tests/CompileTests/A++Code/constants.h
+Scheduled for add      tests/CompileTests/A++Code/d_op_all.C
+Scheduled for add      tests/CompileTests/A++Code/data_hash.C
+Scheduled for add      tests/CompileTests/A++Code/data_hash.h
+Scheduled for add      tests/CompileTests/A++Code/descriptor.h
+Scheduled for add      tests/CompileTests/A++Code/descriptor_cache.C
+Scheduled for add      tests/CompileTests/A++Code/descriptor_notemplates.C
+Scheduled for add      tests/CompileTests/A++Code/descriptor_notemplates.h
+Scheduled for add      tests/CompileTests/A++Code/descriptor_templates.h
+Scheduled for add      tests/CompileTests/A++Code/dimension_macros.h
+Scheduled for add      tests/CompileTests/A++Code/domain.C
+Scheduled for add      tests/CompileTests/A++Code/domain.h
+Scheduled for add      tests/CompileTests/A++Code/error_checking.C
+Scheduled for add      tests/CompileTests/A++Code/expression_templates.h
+Scheduled for add      tests/CompileTests/A++Code/f_op_all.C
+Scheduled for add      tests/CompileTests/A++Code/i_op_all.C
+Scheduled for add      tests/CompileTests/A++Code/index.C
+Scheduled for add      tests/CompileTests/A++Code/index.h
+Scheduled for add      tests/CompileTests/A++Code/index_operator_notemplates.C
+Scheduled for add      tests/CompileTests/A++Code/inline_expression_templates.h
+Scheduled for add      tests/CompileTests/A++Code/inline_func.h
+Scheduled for add      tests/CompileTests/A++Code/inline_support.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_aggregate.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_aggregate.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_expression.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_expression.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_operand.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_operand.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_statement.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_statement.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_task.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_task.h
+Scheduled for add      tests/CompileTests/A++Code/lazy_taskset.C
+Scheduled for add      tests/CompileTests/A++Code/lazy_taskset.h
+Scheduled for add      tests/CompileTests/A++Code/lazyarray.C
+Scheduled for add      tests/CompileTests/A++Code/lazyarray.h
+Scheduled for add      tests/CompileTests/A++Code/machine.h
+Scheduled for add      tests/CompileTests/A++Code/max_array_dim.h
+Scheduled for add      tests/CompileTests/A++Code/mdi_typedef.h
+Scheduled for add      tests/CompileTests/A++Code/new_operators_notemplates.C
+Scheduled for add      tests/CompileTests/A++Code/optimization.C
+Scheduled for add      tests/CompileTests/A++Code/optimization.h
+Scheduled for add      tests/CompileTests/A++Code/partitioning.C
+Scheduled for add      tests/CompileTests/A++Code/partitioning.C.original
+Scheduled for add      tests/CompileTests/A++Code/partitioning.h
+Scheduled for add      tests/CompileTests/A++Code/rose_abstract_op.C
+Scheduled for add      tests/CompileTests/A++Code/rose_domain.C
+Scheduled for add      tests/CompileTests/A++Code/static_initialization.C
+Scheduled for add      tests/CompileTests/A++Code/test_bool.C
+Scheduled for add      tests/CompileTests/A++Code/where.C
+Scheduled for add      tests/CompileTests/A++Code/where.h
+Scheduled for add      tests/CompileTests/A++Tests/A++.h
+Scheduled for add      tests/CompileTests/A++Tests/A++_headers.h
+Scheduled for add      tests/CompileTests/A++Tests/A++_notemplates.h
+Scheduled for add      tests/CompileTests/A++Tests/A++_templates.h
+Scheduled for add      tests/CompileTests/A++Tests/Makefile.am
+Scheduled for add      tests/CompileTests/A++Tests/abstract_op.C
+Scheduled for add      tests/CompileTests/A++Tests/array_domain.h
+Scheduled for add      tests/CompileTests/A++Tests/array_notemplates.C
+Scheduled for add      tests/CompileTests/A++Tests/comm_man.C
+Scheduled for add      tests/CompileTests/A++Tests/comm_man.h
+Scheduled for add      tests/CompileTests/A++Tests/config.h
+Scheduled for add      tests/CompileTests/A++Tests/constants.h
+Scheduled for add      tests/CompileTests/A++Tests/d_op_all.C
+Scheduled for add      tests/CompileTests/A++Tests/data_hash.C
+Scheduled for add      tests/CompileTests/A++Tests/data_hash.h
+Scheduled for add      tests/CompileTests/A++Tests/descriptor.h
+Scheduled for add      tests/CompileTests/A++Tests/descriptor_cache.C
+Scheduled for add      tests/CompileTests/A++Tests/descriptor_notemplates.C
+Scheduled for add      tests/CompileTests/A++Tests/descriptor_notemplates.h
+Scheduled for add      tests/CompileTests/A++Tests/descriptor_templates.h
+Scheduled for add      tests/CompileTests/A++Tests/dimension_macros.h
+Scheduled for add      tests/CompileTests/A++Tests/domain.C
+Scheduled for add      tests/CompileTests/A++Tests/domain.h
+Scheduled for add      tests/CompileTests/A++Tests/error_checking.C
+Scheduled for add      tests/CompileTests/A++Tests/expression_templates.h
+Scheduled for add      tests/CompileTests/A++Tests/f_op_all.C
+Scheduled for add      tests/CompileTests/A++Tests/i_op_all.C
+Scheduled for add      tests/CompileTests/A++Tests/index.C
+Scheduled for add      tests/CompileTests/A++Tests/index.h
+Scheduled for add      tests/CompileTests/A++Tests/index_operator_notemplates.C
+Scheduled for add      tests/CompileTests/A++Tests/inline_expression_templates.h
+Scheduled for add      tests/CompileTests/A++Tests/inline_func.h
+Scheduled for add      tests/CompileTests/A++Tests/inline_support.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_aggregate.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_aggregate.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_expression.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_expression.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_operand.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_operand.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_statement.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_statement.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_task.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_task.h
+Scheduled for add      tests/CompileTests/A++Tests/lazy_taskset.C
+Scheduled for add      tests/CompileTests/A++Tests/lazy_taskset.h
+Scheduled for add      tests/CompileTests/A++Tests/lazyarray.C
+Scheduled for add      tests/CompileTests/A++Tests/lazyarray.h
+Scheduled for add      tests/CompileTests/A++Tests/machine.h
+Scheduled for add      tests/CompileTests/A++Tests/max_array_dim.h
+Scheduled for add      tests/CompileTests/A++Tests/mdi_typedef.h
+Scheduled for add      tests/CompileTests/A++Tests/new_operators_notemplates.C
+Scheduled for add      tests/CompileTests/A++Tests/optimization.C
+Scheduled for add      tests/CompileTests/A++Tests/optimization.h
+Scheduled for add      tests/CompileTests/A++Tests/partitioning.C
+Scheduled for add      tests/CompileTests/A++Tests/partitioning.h
+Scheduled for add      tests/CompileTests/A++Tests/preprocessed_test2001_11.C
+Scheduled for add      tests/CompileTests/A++Tests/rose_abstract_op.C
+Scheduled for add      tests/CompileTests/A++Tests/rose_domain.C
+Scheduled for add      tests/CompileTests/A++Tests/static_initialization.C
+Scheduled for add      tests/CompileTests/A++Tests/test1.C
+Scheduled for add      tests/CompileTests/A++Tests/test2001_11.C
+Scheduled for add      tests/CompileTests/A++Tests/where.C
+Scheduled for add      tests/CompileTests/A++Tests/where.h
+Scheduled for add      tests/CompileTests/C++Code/A++.h
+Scheduled for add      tests/CompileTests/C++Code/A++Test.C
+Scheduled for add      tests/CompileTests/C++Code/AndreasTranslator.C
+Scheduled for add      tests/CompileTests/C++Code/Makefile.am
+Scheduled for add      tests/CompileTests/C++Code/README
+Scheduled for add      tests/CompileTests/C++Code/astAttributeTest.C
+Scheduled for add      tests/CompileTests/C++Code/commandlineProcessor.C
+Scheduled for add      tests/CompileTests/C++Code/confdefs.h
+Scheduled for add      tests/CompileTests/C++Code/conftest.C
+Scheduled for add      tests/CompileTests/C++Code/fileFilter.C
+Scheduled for add      tests/CompileTests/C++Code/interp.C
+Scheduled for add      tests/CompileTests/C++Code/lexPhase2003_01.C
+Scheduled for add      tests/CompileTests/C++Code/lexPhase2003_02.C
+Scheduled for add      tests/CompileTests/C++Code/markus_typedef_error.C
+Scheduled for add      tests/CompileTests/C++Code/preprocessor.C
+Scheduled for add      tests/CompileTests/C++Code/redblack.C
+Scheduled for add      tests/CompileTests/C++Code/riemann.C
+Scheduled for add      tests/CompileTests/C++Code/rose_interp.C
+Scheduled for add      tests/CompileTests/C++Code/rose_test2004_20.C
+Scheduled for add      tests/CompileTests/C++Code/test.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_01.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_02.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_03.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_04.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_05.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_05.h
+Scheduled for add      tests/CompileTests/C++Code/test2001_06.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_07.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_08.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_09.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_10.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_11.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_12.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_13.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_14.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_15.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_15.h
+Scheduled for add      tests/CompileTests/C++Code/test2001_16.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_17.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_18.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_18A.h
+Scheduled for add      tests/CompileTests/C++Code/test2001_18B.h
+Scheduled for add      tests/CompileTests/C++Code/test2001_19.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_20.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_21.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_22.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_23.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_24.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_25.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_26.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_27.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_28.C
+Scheduled for add      tests/CompileTests/C++Code/test2001_29.C
+Scheduled for add      tests/CompileTests/C++Code/test2002_01.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_01.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_02.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_03.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_04.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_05.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_06.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_07.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_08.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_08.h
+Scheduled for add      tests/CompileTests/C++Code/test2003_09.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_10.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_11.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_12.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_13.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_14.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_15.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_16.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_17.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_18.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_19.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_20.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_21.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_22.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_23.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_24.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_25.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_26.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_27.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_28.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_29.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_30.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_31.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_32.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_33.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_34.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_35.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_36.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_37.C
+Scheduled for add      tests/CompileTests/C++Code/test2003_38.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_01.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_02.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_03.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_04.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_05.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_06.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_07.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_08.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_09.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_10.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_11.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_12.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_13.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_14.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_15.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_16.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_17.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_18.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_19.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_20.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_22.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_23.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_24.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_25.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_26.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_27.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_28.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_29.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_30.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_31.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_32.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_33.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_34.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_35.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_36.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_37.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_38.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_39.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_40.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_40.h
+Scheduled for add      tests/CompileTests/C++Code/test2004_41.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_42.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_43.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_44.C
+Scheduled for add      tests/CompileTests/C++Code/test2004_45.C
+Scheduled for add      tests/CompileTests/C++Code/testAnsi.C
+Scheduled for add      tests/CompileTests/C++Code/testAstAttributes_testFile.C
+Scheduled for add      tests/CompileTests/C++Code/testFileFilter.C
+Scheduled for add      tests/CompileTests/C++Code/testNotEqualBut.C
+Scheduled for add      tests/CompileTests/C++Code/testQueryLib.C
+Scheduled for add      tests/CompileTests/C++Code/testQueryLib_testFile.C
+Scheduled for add      tests/CompileTests/C++Code/testTemplateSpecialization.C
+Scheduled for add      tests/CompileTests/C++Code/testTemplateSpecializationSupport.C
+Scheduled for add      tests/CompileTests/C++Code/testTemplates.C
+Scheduled for add      tests/CompileTests/C++Code/test_new_edg.C
+Scheduled for add      tests/CompileTests/C++Code/test_noname.C
+Scheduled for add      tests/CompileTests/C++Code/test_treeTrav_MK_01.C
+Scheduled for add      tests/CompileTests/C++Code/test_treeTrav_MK_02.C
+Scheduled for add      tests/CompileTests/C++Code/testcode.C
+Scheduled for add      tests/CompileTests/C++Code/typedefExamples.C
+Scheduled for add      tests/CompileTests/OvertureCode/AbstractException.h
+Scheduled for add      tests/CompileTests/OvertureCode/AdvancingFront.h
+Scheduled for add      tests/CompileTests/OvertureCode/AdvancingFrontParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/AirfoilMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/AliasedDPtr.C
+Scheduled for add      tests/CompileTests/OvertureCode/AliasedDPtr.H
+Scheduled for add      tests/CompileTests/OvertureCode/Annulus.h
+Scheduled for add      tests/CompileTests/OvertureCode/Arena.H
+Scheduled for add      tests/CompileTests/OvertureCode/ArithFab.C
+Scheduled for add      tests/CompileTests/OvertureCode/ArithFab.H
+Scheduled for add      tests/CompileTests/OvertureCode/Array.C
+Scheduled for add      tests/CompileTests/OvertureCode/Array.H
+Scheduled for add      tests/CompileTests/OvertureCode/ArrayLim.H
+Scheduled for add      tests/CompileTests/OvertureCode/Assert.H
+Scheduled for add      tests/CompileTests/OvertureCode/AssertException.h
+Scheduled for add      tests/CompileTests/OvertureCode/BArena.H
+Scheduled for add      tests/CompileTests/OvertureCode/BCTypes.h
+Scheduled for add      tests/CompileTests/OvertureCode/BLVERSION.H
+Scheduled for add      tests/CompileTests/OvertureCode/BaseFab.C
+Scheduled for add      tests/CompileTests/OvertureCode/BaseFab.H
+Scheduled for add      tests/CompileTests/OvertureCode/BodyDefinition.h
+Scheduled for add      tests/CompileTests/OvertureCode/Boolean.H
+Scheduled for add      tests/CompileTests/OvertureCode/Bound.h
+Scheduled for add      tests/CompileTests/OvertureCode/BoundaryAdjustment.h
+Scheduled for add      tests/CompileTests/OvertureCode/BoundaryConditionParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/BoundingBox.h
+Scheduled for add      tests/CompileTests/OvertureCode/Box.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxArray.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxAssoc.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxDomain.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxLib.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxList.H
+Scheduled for add      tests/CompileTests/OvertureCode/BoxMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/CONSTANTS.H
+Scheduled for add      tests/CompileTests/OvertureCode/CircleMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/ComposeMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeGridFiniteVolumeOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeGridHybridConnectivity.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeSurface.h
+Scheduled for add      tests/CompileTests/OvertureCode/CompositeTopology.h
+Scheduled for add      tests/CompileTests/OvertureCode/CrossSectionMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/CylinderMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/DPtr.C
+Scheduled for add      tests/CompileTests/OvertureCode/DPtr.H
+Scheduled for add      tests/CompileTests/OvertureCode/DataBaseAccessFunctions.h
+Scheduled for add      tests/CompileTests/OvertureCode/DataBaseBuffer.h
+Scheduled for add      tests/CompileTests/OvertureCode/DataFormats.h
+Scheduled for add      tests/CompileTests/OvertureCode/DataPointMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/DepthMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/DerivedFunctions.h
+Scheduled for add      tests/CompileTests/OvertureCode/DialogData.h
+Scheduled for add      tests/CompileTests/OvertureCode/Display.h
+Scheduled for add      tests/CompileTests/OvertureCode/DisplayParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/DynamicMovingGrids.h
+Scheduled for add      tests/CompileTests/OvertureCode/EllipticGridGenerator.h
+Scheduled for add      tests/CompileTests/OvertureCode/EllipticTransform.h
+Scheduled for add      tests/CompileTests/OvertureCode/EquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/EquiDistribute.h
+Scheduled for add      tests/CompileTests/OvertureCode/ErrorEstimator.h
+Scheduled for add      tests/CompileTests/OvertureCode/FArrayBox.H
+Scheduled for add      tests/CompileTests/OvertureCode/FPC.H
+Scheduled for add      tests/CompileTests/OvertureCode/FabArray.C
+Scheduled for add      tests/CompileTests/OvertureCode/FabArray.H
+Scheduled for add      tests/CompileTests/OvertureCode/FabConv.H
+Scheduled for add      tests/CompileTests/OvertureCode/Face.h
+Scheduled for add      tests/CompileTests/OvertureCode/Face_inline.C
+Scheduled for add      tests/CompileTests/OvertureCode/FilamentMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/FileOutput.h
+Scheduled for add      tests/CompileTests/OvertureCode/FilletMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/FortranIO.h
+Scheduled for add      tests/CompileTests/OvertureCode/FourierOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/Fraction.h
+Scheduled for add      tests/CompileTests/OvertureCode/GCMath.h
+Scheduled for add      tests/CompileTests/OvertureCode/GL_GraphicsInterface.h
+Scheduled for add      tests/CompileTests/OvertureCode/GUIState.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericCollectionOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericCompositeGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericDataBase.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGraphicsInterface.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridCollection.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridCollectionOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridMotion.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericGridMotionParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/GenericMappedGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/Geom.h
+Scheduled for add      tests/CompileTests/OvertureCode/GeomADTTuple3dInt.h
+Scheduled for add      tests/CompileTests/OvertureCode/Geom_inline.C
+Scheduled for add      tests/CompileTests/OvertureCode/GeometricADT.h
+Scheduled for add      tests/CompileTests/OvertureCode/GeometricADT3dInt.h
+Scheduled for add      tests/CompileTests/OvertureCode/GeometricADTExceptions.h
+Scheduled for add      tests/CompileTests/OvertureCode/GraphicsParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridCollection.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridCollectionFiniteVolumeOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridCollectionOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/GridFunctionParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/HDF_DataBase.h
+Scheduled for add      tests/CompileTests/OvertureCode/HarwellEquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/HyperbolicMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/IgesReader.h
+Scheduled for add      tests/CompileTests/OvertureCode/IndexArg.h
+Scheduled for add      tests/CompileTests/OvertureCode/IndexType.H
+Scheduled for add      tests/CompileTests/OvertureCode/IntVect.H
+Scheduled for add      tests/CompileTests/OvertureCode/Integrate.h
+Scheduled for add      tests/CompileTests/OvertureCode/Interpolant.h
+Scheduled for add      tests/CompileTests/OvertureCode/Interpolate.h
+Scheduled for add      tests/CompileTests/OvertureCode/InterpolateParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/InterpolateRefinements.h
+Scheduled for add      tests/CompileTests/OvertureCode/IntersectionMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/Inverse.h
+Scheduled for add      tests/CompileTests/OvertureCode/JoinMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/LineMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/List.C
+Scheduled for add      tests/CompileTests/OvertureCode/List.H
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfBoundingBox.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfCompositeGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfCompositeGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleDistributedArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfDoubleSerialArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatDistributedArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfFloatSerialArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGenericCompositeGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGenericGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGenericGridCollection.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGenericGridCollectionOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGenericMappedGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfGridCollection.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfHDF_DataBaseRCData.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntDistributedArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntSerialArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfIntegerArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfListOfDoubleArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfListOfFloatArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfListOfIntArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfListOfRealArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfMappedGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfMappedGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfMappingRC.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfRealArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfReferenceCountedObjects.C
+Scheduled for add      tests/CompileTests/OvertureCode/ListOfReferenceCountedObjects.h
+Scheduled for add      tests/CompileTests/OvertureCode/Looping.H
+Scheduled for add      tests/CompileTests/OvertureCode/Makefile.am
+Scheduled for add      tests/CompileTests/OvertureCode/Makefile.overture
+Scheduled for add      tests/CompileTests/OvertureCode/MappedGrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappedGridFiniteVolumeOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappedGridOperators.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappedGridOperatorsInclude.h
+Scheduled for add      tests/CompileTests/OvertureCode/Mapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingBuilder.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingEnums.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingInformation.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingP.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingProjectionParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingRC.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingWS.h
+Scheduled for add      tests/CompileTests/OvertureCode/MappingsFromCAD.h
+Scheduled for add      tests/CompileTests/OvertureCode/MatrixMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/MatrixTransform.h
+Scheduled for add      tests/CompileTests/OvertureCode/MatrixTransformGridMotion.h
+Scheduled for add      tests/CompileTests/OvertureCode/MatrixTransformGridMotionParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/MatrixTransformMotionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/Misc.H
+Scheduled for add      tests/CompileTests/OvertureCode/MultiFab.H
+Scheduled for add      tests/CompileTests/OvertureCode/MultigridEquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/NTreeNode.h
+Scheduled for add      tests/CompileTests/OvertureCode/NTreeNode2GeomADTTuple3dInt.h
+Scheduled for add      tests/CompileTests/OvertureCode/NTreeNodeExceptions.h
+Scheduled for add      tests/CompileTests/OvertureCode/NameList.h
+Scheduled for add      tests/CompileTests/OvertureCode/NormalMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/NormedFab.C
+Scheduled for add      tests/CompileTests/OvertureCode/NormedFab.H
+Scheduled for add      tests/CompileTests/OvertureCode/NurbsMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/OGFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/OGPolyFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/OGPulseFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/OGTrigFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/OGgetIndex.h
+Scheduled for add      tests/CompileTests/OvertureCode/OVFortranDefine.h
+Scheduled for add      tests/CompileTests/OvertureCode/OVFortranDefine.h.in
+Scheduled for add      tests/CompileTests/OvertureCode/OffsetShell.h
+Scheduled for add      tests/CompileTests/OvertureCode/Ogen.h
+Scheduled for add      tests/CompileTests/OvertureCode/Oges.h
+Scheduled for add      tests/CompileTests/OvertureCode/OgesEnums.h
+Scheduled for add      tests/CompileTests/OvertureCode/OgesParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/Ogmg.h
+Scheduled for add      tests/CompileTests/OvertureCode/OgmgParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/Ogshow.h
+Scheduled for add      tests/CompileTests/OvertureCode/OrderedFab.C
+Scheduled for add      tests/CompileTests/OvertureCode/OrderedFab.H
+Scheduled for add      tests/CompileTests/OvertureCode/Orientation.H
+Scheduled for add      tests/CompileTests/OvertureCode/OrthographicTransform.h
+Scheduled for add      tests/CompileTests/OvertureCode/Overture.h
+Scheduled for add      tests/CompileTests/OvertureCode/OvertureBL.h
+Scheduled for add      tests/CompileTests/OvertureCode/OvertureDefine.h
+Scheduled for add      tests/CompileTests/OvertureCode/OvertureDefine.h.in
+Scheduled for add      tests/CompileTests/OvertureCode/OvertureInit.h
+Scheduled for add      tests/CompileTests/OvertureCode/OvertureTypes.h
+Scheduled for add      tests/CompileTests/OvertureCode/PArray.C
+Scheduled for add      tests/CompileTests/OvertureCode/PArray.H
+Scheduled for add      tests/CompileTests/OvertureCode/PETScEquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/ParallelUtility.h
+Scheduled for add      tests/CompileTests/OvertureCode/ParmParse.H
+Scheduled for add      tests/CompileTests/OvertureCode/PlaneMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/PlotStuff.h
+Scheduled for add      tests/CompileTests/OvertureCode/PlotStuffParameters.h
+Scheduled for add      tests/CompileTests/OvertureCode/Pointers.C
+Scheduled for add      tests/CompileTests/OvertureCode/Pointers.H
+Scheduled for add      tests/CompileTests/OvertureCode/PriorityQueue.h
+Scheduled for add      tests/CompileTests/OvertureCode/Projection.h
+Scheduled for add      tests/CompileTests/OvertureCode/QuadTree.h
+Scheduled for add      tests/CompileTests/OvertureCode/QuadraticMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/REAL.H
+Scheduled for add      tests/CompileTests/OvertureCode/ReductionMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/ReferenceCounting.h
+Scheduled for add      tests/CompileTests/OvertureCode/ReferenceCountingList.h
+Scheduled for add      tests/CompileTests/OvertureCode/Regrid.h
+Scheduled for add      tests/CompileTests/OvertureCode/ReparameterizationTransform.h
+Scheduled for add      tests/CompileTests/OvertureCode/RestrictionMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/RevolutionMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/RocketMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/SPACE.H
+Scheduled for add      tests/CompileTests/OvertureCode/SPACE_F.H
+Scheduled for add      tests/CompileTests/OvertureCode/ShowFileReader.h
+Scheduled for add      tests/CompileTests/OvertureCode/SimpleDPtr.C
+Scheduled for add      tests/CompileTests/OvertureCode/SimpleDPtr.H
+Scheduled for add      tests/CompileTests/OvertureCode/SlapEquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/SmoothedPolygon.h
+Scheduled for add      tests/CompileTests/OvertureCode/SparseRep.h
+Scheduled for add      tests/CompileTests/OvertureCode/Sphere.h
+Scheduled for add      tests/CompileTests/OvertureCode/SplineMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/Square.h
+Scheduled for add      tests/CompileTests/OvertureCode/SquareMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/Stencil.h
+Scheduled for add      tests/CompileTests/OvertureCode/StretchMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/StretchTransform.h
+Scheduled for add      tests/CompileTests/OvertureCode/StretchedSquare.h
+Scheduled for add      tests/CompileTests/OvertureCode/SweepMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/TFIMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/Triangle.h
+Scheduled for add      tests/CompileTests/OvertureCode/TriangleWrapper.h
+Scheduled for add      tests/CompileTests/OvertureCode/TridiagonalSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/TrimmedMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/TrivialArray.h
+Scheduled for add      tests/CompileTests/OvertureCode/Tuple.C
+Scheduled for add      tests/CompileTests/OvertureCode/Tuple.H
+Scheduled for add      tests/CompileTests/OvertureCode/TwilightZoneWizard.h
+Scheduled for add      tests/CompileTests/OvertureCode/Ugen.h
+Scheduled for add      tests/CompileTests/OvertureCode/UnstructuredMapping.h
+Scheduled for add      tests/CompileTests/OvertureCode/UseCount.H
+Scheduled for add      tests/CompileTests/OvertureCode/Utility.H
+Scheduled for add      tests/CompileTests/OvertureCode/YaleEquationSolver.h
+Scheduled for add      tests/CompileTests/OvertureCode/aString.H
+Scheduled for add      tests/CompileTests/OvertureCode/axisDefs.h
+Scheduled for add      tests/CompileTests/OvertureCode/billsMergeMacro.h
+Scheduled for add      tests/CompileTests/OvertureCode/cgux2a.h
+Scheduled for add      tests/CompileTests/OvertureCode/cgux4a.h
+Scheduled for add      tests/CompileTests/OvertureCode/conversion.h
+Scheduled for add      tests/CompileTests/OvertureCode/davidsReal.h
+Scheduled for add      tests/CompileTests/OvertureCode/defect.C
+Scheduled for add      tests/CompileTests/OvertureCode/depend
+Scheduled for add      tests/CompileTests/OvertureCode/depend.bak
+Scheduled for add      tests/CompileTests/OvertureCode/derivativeDefinitions.h
+Scheduled for add      tests/CompileTests/OvertureCode/display.h
+Scheduled for add      tests/CompileTests/OvertureCode/doubleCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/doubleGenericGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/doubleGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/doubleGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/doubleMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/floatCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/floatGenericGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/floatGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/floatGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/floatMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/intCompositeGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/intGenericGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/intGenericGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/intGridCollectionFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/intMappedGridFunction.h
+Scheduled for add      tests/CompileTests/OvertureCode/interpolatePoints.h
+Scheduled for add      tests/CompileTests/OvertureCode/laplacian.h
+Scheduled for add      tests/CompileTests/OvertureCode/loops.h
+Scheduled for add      tests/CompileTests/OvertureCode/makeDebugPlots.h
+Scheduled for add      tests/CompileTests/OvertureCode/mathutil.h
+Scheduled for add      tests/CompileTests/OvertureCode/mogl.h
+Scheduled for add      tests/CompileTests/OvertureCode/overtureBug_01.C
+Scheduled for add      tests/CompileTests/OvertureCode/overtureBug_01.C.b05
+Scheduled for add      tests/CompileTests/OvertureCode/overtureBug_01.C.b06
+Scheduled for add      tests/CompileTests/OvertureCode/ply.h
+Scheduled for add      tests/CompileTests/OvertureCode/plyFileInterface.h
+Scheduled for add      tests/CompileTests/OvertureCode/testUtils.h
+Scheduled for add      tests/CompileTests/OvertureCode/tlist.C
+Scheduled for add      tests/CompileTests/OvertureCode/tlist.h
+Scheduled for add      tests/CompileTests/OvertureCode/triangle.h
+Scheduled for add      tests/CompileTests/OvertureCode/wdhdefs.h
+Scheduled for add      tests/CompileTests/OvertureCode/xD.h
+Scheduled for add      tests/CompileTests/OvertureCode/xDC.h
+Scheduled for add      tests/CompileTests/OvertureCode/xFDerivative.C
+Scheduled for add      tests/CompileTests/P++Tests/A++.h
+Scheduled for add      tests/CompileTests/P++Tests/A++_headers.h
+Scheduled for add      tests/CompileTests/P++Tests/List.h
+Scheduled for add      tests/CompileTests/P++Tests/Makefile.am
+Scheduled for add      tests/CompileTests/P++Tests/P++.h
+Scheduled for add      tests/CompileTests/P++Tests/P++_config.h
+Scheduled for add      tests/CompileTests/P++Tests/P++_headers.h
+Scheduled for add      tests/CompileTests/P++Tests/Parti_config.h
+Scheduled for add      tests/CompileTests/P++Tests/array_domain.h
+Scheduled for add      tests/CompileTests/P++Tests/arraylist.h
+Scheduled for add      tests/CompileTests/P++Tests/bsparti.h
+Scheduled for add      tests/CompileTests/P++Tests/comm_man.h
+Scheduled for add      tests/CompileTests/P++Tests/conform_array_set.h
+Scheduled for add      tests/CompileTests/P++Tests/conform_enforce.h
+Scheduled for add      tests/CompileTests/P++Tests/constants.h
+Scheduled for add      tests/CompileTests/P++Tests/data_hash.h
+Scheduled for add      tests/CompileTests/P++Tests/descriptor.h
+Scheduled for add      tests/CompileTests/P++Tests/dimension_macros.h
+Scheduled for add      tests/CompileTests/P++Tests/domain.h
+Scheduled for add      tests/CompileTests/P++Tests/gs-c.h
+Scheduled for add      tests/CompileTests/P++Tests/hash.h
+Scheduled for add      tests/CompileTests/P++Tests/helper.h
+Scheduled for add      tests/CompileTests/P++Tests/index.h
+Scheduled for add      tests/CompileTests/P++Tests/indirect_addressing.h
+Scheduled for add      tests/CompileTests/P++Tests/inline_func.h
+Scheduled for add      tests/CompileTests/P++Tests/inline_support.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_aggregate.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_expression.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_operand.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_statement.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_task.h
+Scheduled for add      tests/CompileTests/P++Tests/lazy_taskset.h
+Scheduled for add      tests/CompileTests/P++Tests/lazyarray.h
+Scheduled for add      tests/CompileTests/P++Tests/machine.h
+Scheduled for add      tests/CompileTests/P++Tests/max_array_dim.h
+Scheduled for add      tests/CompileTests/P++Tests/mdi_typedef.h
+Scheduled for add      tests/CompileTests/P++Tests/mpi-port.h
+Scheduled for add      tests/CompileTests/P++Tests/optimization.h
+Scheduled for add      tests/CompileTests/P++Tests/p_data_hash.h
+Scheduled for add      tests/CompileTests/P++Tests/p_descriptor.h
+Scheduled for add      tests/CompileTests/P++Tests/p_domain.h
+Scheduled for add      tests/CompileTests/P++Tests/p_inline_func.h
+Scheduled for add      tests/CompileTests/P++Tests/p_inline_support.h
+Scheduled for add      tests/CompileTests/P++Tests/p_lazy_aggregate.h
+Scheduled for add      tests/CompileTests/P++Tests/p_lazy_operand.h
+Scheduled for add      tests/CompileTests/P++Tests/p_lazyarray.h
+Scheduled for add      tests/CompileTests/P++Tests/partitioning.h
+Scheduled for add      tests/CompileTests/P++Tests/partlist.h
+Scheduled for add      tests/CompileTests/P++Tests/pgshash.h
+Scheduled for add      tests/CompileTests/P++Tests/pgslib-include-c.h
+Scheduled for add      tests/CompileTests/P++Tests/pgslib-names.h
+Scheduled for add      tests/CompileTests/P++Tests/pgslib-types.h
+Scheduled for add      tests/CompileTests/P++Tests/port.h
+Scheduled for add      tests/CompileTests/P++Tests/print.h
+Scheduled for add      tests/CompileTests/P++Tests/send-rcv.h
+Scheduled for add      tests/CompileTests/P++Tests/test2001_01.C
+Scheduled for add      tests/CompileTests/P++Tests/utility-c.h
+Scheduled for add      tests/CompileTests/P++Tests/utils.h
+Scheduled for add      tests/CompileTests/P++Tests/where.h
+Scheduled for add      tests/CompilerOptionsTests/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/A++Code/A++.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/A++_headers.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/A++_notemplates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/A++_templates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/Makefile.am
+Scheduled for add      tests/CompilerOptionsTests/A++Code/abstract_op.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/array_domain.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/array_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/comm_man.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/comm_man.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/config.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/constants.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/d_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/data_hash.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/data_hash.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/descriptor.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/descriptor_cache.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/descriptor_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/descriptor_notemplates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/descriptor_templates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/dimension_macros.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/domain.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/domain.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/error_checking.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/expression_templates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/f_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/findNullBlockInEDG.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/i_op_all.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/index.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/index.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/index_operator_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/inline_expression_templates.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/inline_func.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/inline_support.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_aggregate.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_aggregate.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_expression.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_expression.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_operand.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_operand.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_statement.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_statement.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_task.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_task.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_taskset.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazy_taskset.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazyarray.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/lazyarray.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/machine.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/max_array_dim.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/mdi_typedef.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/new_operators_notemplates.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/optimization.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/optimization.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/partitioning.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/partitioning.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/rose_abstract_op.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/rose_domain.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/static_initialization.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/test.h
+Scheduled for add      tests/CompilerOptionsTests/A++Code/testUnparser.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/test_bool.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/where.C
+Scheduled for add      tests/CompilerOptionsTests/A++Code/where.h
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_01.C
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_01.h
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_02.C
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_02.h
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_03.C
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_03.h
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_04.C
+Scheduled for add      tests/KnownBugs/AttachPreprocessingInfo/mkTest_04.h
+Scheduled for add      tests/PerformanceTests/Makefile.am
+Scheduled for add      tests/PerformanceTests/A++Tests/Makefile.am
+Scheduled for add      tests/PerformanceTests/A++Tests/performanceTest.C
+Scheduled for add      tests/PerformanceTests/A++Tests/test_01.C
+Scheduled for add      tests/PerformanceTests/A++Tests/test_01.h
+Scheduled for add      tests/PerformanceTests/C++Tests/IndirectAddressing/indirectAddressingSupport.h
+Scheduled for add      tests/PerformanceTests/C++Tests/IndirectAddressing/simpleIndirectLoop.c
+Scheduled for add      tests/PerformanceTests/C++Tests/IndirectAddressing/testIndirectAddressingOptimization.C
+Scheduled for add      tests/PerformanceTests/P++Tests/Makefile.am
+Scheduled for add      tests/PerformanceTests/P++Tests/Makefile.am.old
+Scheduled for add      tests/PerformanceTests/P++Tests/performanceTest.C
+Scheduled for add      tests/PerformanceTests/P++Tests/test_01.C
+Scheduled for add      tests/PerformanceTests/P++Tests/test_01.h
+Scheduled for add      tests/RunTests/Makefile.am
+Scheduled for add      tests/RunTests/A++Tests/A++.h
+Scheduled for add      tests/RunTests/A++Tests/A++_headers.h
+Scheduled for add      tests/RunTests/A++Tests/A++_notemplates.h
+Scheduled for add      tests/RunTests/A++Tests/A++_templates.h
+Scheduled for add      tests/RunTests/A++Tests/Makefile.am
+Scheduled for add      tests/RunTests/A++Tests/abstract_op.C
+Scheduled for add      tests/RunTests/A++Tests/array_domain.h
+Scheduled for add      tests/RunTests/A++Tests/array_notemplates.C
+Scheduled for add      tests/RunTests/A++Tests/comm_man.C
+Scheduled for add      tests/RunTests/A++Tests/comm_man.h
+Scheduled for add      tests/RunTests/A++Tests/config.h
+Scheduled for add      tests/RunTests/A++Tests/constants.h
+Scheduled for add      tests/RunTests/A++Tests/d_op_all.C
+Scheduled for add      tests/RunTests/A++Tests/data_hash.C
+Scheduled for add      tests/RunTests/A++Tests/data_hash.h
+Scheduled for add      tests/RunTests/A++Tests/descriptor.h
+Scheduled for add      tests/RunTests/A++Tests/descriptor_cache.C
+Scheduled for add      tests/RunTests/A++Tests/descriptor_notemplates.C
+Scheduled for add      tests/RunTests/A++Tests/descriptor_notemplates.h
+Scheduled for add      tests/RunTests/A++Tests/descriptor_templates.h
+Scheduled for add      tests/RunTests/A++Tests/dimension_macros.h
+Scheduled for add      tests/RunTests/A++Tests/domain.C
+Scheduled for add      tests/RunTests/A++Tests/domain.h
+Scheduled for add      tests/RunTests/A++Tests/error_checking.C
+Scheduled for add      tests/RunTests/A++Tests/expression_templates.h
+Scheduled for add      tests/RunTests/A++Tests/f_op_all.C
+Scheduled for add      tests/RunTests/A++Tests/i_op_all.C
+Scheduled for add      tests/RunTests/A++Tests/index.C
+Scheduled for add      tests/RunTests/A++Tests/index.h
+Scheduled for add      tests/RunTests/A++Tests/index_operator_notemplates.C
+Scheduled for add      tests/RunTests/A++Tests/inline_expression_templates.h
+Scheduled for add      tests/RunTests/A++Tests/inline_func.h
+Scheduled for add      tests/RunTests/A++Tests/inline_support.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_aggregate.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_aggregate.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_expression.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_expression.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_operand.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_operand.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_statement.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_statement.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_task.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_task.h
+Scheduled for add      tests/RunTests/A++Tests/lazy_taskset.C
+Scheduled for add      tests/RunTests/A++Tests/lazy_taskset.h
+Scheduled for add      tests/RunTests/A++Tests/lazyarray.C
+Scheduled for add      tests/RunTests/A++Tests/lazyarray.h
+Scheduled for add      tests/RunTests/A++Tests/machine.h
+Scheduled for add      tests/RunTests/A++Tests/max_array_dim.h
+Scheduled for add      tests/RunTests/A++Tests/mdi_typedef.h
+Scheduled for add      tests/RunTests/A++Tests/new_operators_notemplates.C
+Scheduled for add      tests/RunTests/A++Tests/optimization.C
+Scheduled for add      tests/RunTests/A++Tests/optimization.h
+Scheduled for add      tests/RunTests/A++Tests/partitioning.C
+Scheduled for add      tests/RunTests/A++Tests/partitioning.h
+Scheduled for add      tests/RunTests/A++Tests/rose_abstract_op.C
+Scheduled for add      tests/RunTests/A++Tests/rose_domain.C
+Scheduled for add      tests/RunTests/A++Tests/static_initialization.C
+Scheduled for add      tests/RunTests/A++Tests/test1.C
+Scheduled for add      tests/RunTests/A++Tests/where.C
+Scheduled for add      tests/RunTests/A++Tests/where.h
+Scheduled for add      tests/RunTests/P++Tests/Makefile.am
+Scheduled for add      tests/RunTests/P++Tests/ROSE_TRANSFORMATION_SOURCE_3.h
+Scheduled for add      tests/RunTests/P++Tests/test1.C
+Scheduled for add      tests/RunTests/multigridTest/Makefile
+Scheduled for add      tests/RunTests/multigridTest/defalloc.h
+Scheduled for add      tests/RunTests/multigridTest/list.h
+Scheduled for add      tests/RunTests/multigridTest/mg.C
+Scheduled for add      tests/RunTests/multigridTest/mg.h
+Scheduled for add      tests/RunTests/multigridTest/mg.int.c
+Scheduled for add      tests/RunTests/multigridTest/mg1level.C
+Scheduled for add      tests/RunTests/multigridTest/mg1level.h
+Scheduled for add      tests/RunTests/multigridTest/mg1level.int.c
+Scheduled for add      tests/RunTests/multigridTest/mg_main.C
+Scheduled for add      tests/RunTests/multigridTest/mg_main.h
+Scheduled for add      tests/RunTests/multigridTest/mg_main.int.c
+Scheduled for add      tests/RunTests/multigridTest/pde.C
+Scheduled for add      tests/RunTests/multigridTest/pde.h
+Scheduled for add      tests/RunTests/multigridTest/pde.int.c
+Scheduled for add      tests/RunTests/multigridTest/redo_tests
+Scheduled for add      tests/RunTests/multigridTest/riemann.C
+Scheduled for add      tests/RunTests/multigridTest/riemann.int.c
+Scheduled for add      tests/RunTests/multigridTest/roseTransformationProgramTree.show
+Scheduled for add      tests/RunTests/multigridTest/rose_mg.C
+Scheduled for add      tests/RunTests/multigridTest/rose_mg1level.C
+Scheduled for add      tests/RunTests/multigridTest/rose_mg_main.C
+Scheduled for add      tests/RunTests/multigridTest/rose_mg_main.h
+Scheduled for add      tests/RunTests/multigridTest/rose_pde.C
+Scheduled for add      tests/RunTests/multigridTest/rose_riemann.C
+Scheduled for add      tests/RunTests/multigridTest/rose_riemann.int.c
+Scheduled for add      tests/RunTests/multigridTest/rose_testcode.C
+Scheduled for add      tests/RunTests/multigridTest/rose_testppp.C
+Scheduled for add      tests/RunTests/multigridTest/run_A++tests
+Scheduled for add      tests/RunTests/multigridTest/simple.C
+Scheduled for add      tests/RunTests/multigridTest/simple_prime.C
+Scheduled for add      tests/RunTests/multigridTest/simple_prime.h
+Scheduled for add      tests/RunTests/multigridTest/templates.C
+Scheduled for add      tests/RunTests/multigridTest/templates2.C
+Scheduled for add      tests/RunTests/multigridTest/templates_prime.C
+Scheduled for add      tests/RunTests/multigridTest/templates_prime.h
+Scheduled for add      tests/RunTests/multigridTest/templates_prime_main.C
+Scheduled for add      tests/RunTests/multigridTest/templates_stl.C
+Scheduled for add      tests/RunTests/multigridTest/templates_test_main.C
+Scheduled for add      tests/RunTests/multigridTest/templates_tlist.C
+Scheduled for add      tests/RunTests/multigridTest/testcode.C
+Scheduled for add      tests/RunTests/multigridTest/testcode.int.c
+Scheduled for add      tests/RunTests/multigridTest/testppp.C
+Scheduled for add      tests/RunTests/multigridTest/testppp.int.c
+Scheduled for add      tests/RunTests/multigridTest/tlist.C
+Scheduled for add      tests/RunTests/multigridTest/tlist.h
+Scheduled for add      tests/RunTests/stlTest/_new.h
+Scheduled for add      tests/RunTests/stlTest/algo.h
+Scheduled for add      tests/RunTests/stlTest/algobase.h
+Scheduled for add      tests/RunTests/stlTest/bool.h
+Scheduled for add      tests/RunTests/stlTest/bvector.h
+Scheduled for add      tests/RunTests/stlTest/defalloc.h
+Scheduled for add      tests/RunTests/stlTest/deque.h
+Scheduled for add      tests/RunTests/stlTest/faralloc.h
+Scheduled for add      tests/RunTests/stlTest/fdeque.h
+Scheduled for add      tests/RunTests/stlTest/flist.h
+Scheduled for add      tests/RunTests/stlTest/fmap.h
+Scheduled for add      tests/RunTests/stlTest/fmultmap.h
+Scheduled for add      tests/RunTests/stlTest/fmultset.h
+Scheduled for add      tests/RunTests/stlTest/fset.h
+Scheduled for add      tests/RunTests/stlTest/function.h
+Scheduled for add      tests/RunTests/stlTest/hdeque.h
+Scheduled for add      tests/RunTests/stlTest/heap.h
+Scheduled for add      tests/RunTests/stlTest/hlist.h
+Scheduled for add      tests/RunTests/stlTest/hmap.h
+Scheduled for add      tests/RunTests/stlTest/hmultmap.h
+Scheduled for add      tests/RunTests/stlTest/hmultset.h
+Scheduled for add      tests/RunTests/stlTest/hset.h
+Scheduled for add      tests/RunTests/stlTest/hugalloc.h
+Scheduled for add      tests/RunTests/stlTest/hvector.h
+Scheduled for add      tests/RunTests/stlTest/iterator.h
+Scheduled for add      tests/RunTests/stlTest/lbvector.h
+Scheduled for add      tests/RunTests/stlTest/ldeque.h
+Scheduled for add      tests/RunTests/stlTest/list.h
+Scheduled for add      tests/RunTests/stlTest/llist.h
+Scheduled for add      tests/RunTests/stlTest/lmap.h
+Scheduled for add      tests/RunTests/stlTest/lmultmap.h
+Scheduled for add      tests/RunTests/stlTest/lmultset.h
+Scheduled for add      tests/RunTests/stlTest/lngalloc.h
+Scheduled for add      tests/RunTests/stlTest/lset.h
+Scheduled for add      tests/RunTests/stlTest/map.h
+Scheduled for add      tests/RunTests/stlTest/multimap.h
+Scheduled for add      tests/RunTests/stlTest/multiset.h
+Scheduled for add      tests/RunTests/stlTest/neralloc.h
+Scheduled for add      tests/RunTests/stlTest/nmap.h
+Scheduled for add      tests/RunTests/stlTest/nmultmap.h
+Scheduled for add      tests/RunTests/stlTest/nmultset.h
+Scheduled for add      tests/RunTests/stlTest/nset.h
+Scheduled for add      tests/RunTests/stlTest/pair.h
+Scheduled for add      tests/RunTests/stlTest/projectn.h
+Scheduled for add      tests/RunTests/stlTest/random.cpp
+Scheduled for add      tests/RunTests/stlTest/run_script
+Scheduled for add      tests/RunTests/stlTest/set.h
+Scheduled for add      tests/RunTests/stlTest/stack.h
+Scheduled for add      tests/RunTests/stlTest/tempbuf.h
+Scheduled for add      tests/RunTests/stlTest/templates_stl.C
+Scheduled for add      tests/RunTests/stlTest/tree.h
+Scheduled for add      tests/RunTests/stlTest/vector.h
+Scheduled for add      tests/roseTests/Makefile.am
+Scheduled for add      tests/roseTests/astRewriteTests/Makefile.am
+Scheduled for add      tests/roseTests/astRewriteTests/TauMidTraversal.h
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram1.C
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram2.C
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram3.C
+Scheduled for add      tests/roseTests/astRewriteTests/inputProgram4.C
+Scheduled for add      tests/roseTests/astRewriteTests/tauProfiler.h
+Scheduled for add      tests/roseTests/astRewriteTests/tauProtos.h
+Scheduled for add      tests/roseTests/astRewriteTests/tauTestProgram.C
+Scheduled for add      tests/roseTests/astRewriteTests/tauifyPreprocessor.C
+Scheduled for add      tests/roseTests/astRewriteTests/test.C
+Scheduled for add      tests/roseTests/astRewriteTests/test16.C
+Scheduled for add      tests/roseTests/astRewriteTests/testDeclarationPrefixGeneration.C
+Scheduled for add      tests/roseTests/astRewriteTests/testDeclarationPrefixGeneration_testCode.C
+Scheduled for add      tests/roseTests/astRewriteTests/testExample1.C
+Scheduled for add      tests/roseTests/astRewriteTests/testLongEnum.C
+Scheduled for add      tests/roseTests/astRewriteTests/testMidLevelInterface.C
+Scheduled for add      tests/roseTests/astRewriteTests/testNewRewrite.C
+Scheduled for add      tests/roseTests/astRewriteTests/testNewRewrite.h
+Scheduled for add      tests/roseTests/astRewriteTests/testRemoveStatements.C
+Scheduled for add      tests/roseTests/astRewriteTests/testReplacementStatements.C
+Scheduled for add      tests/roseTests/astRewriteTests/testRewritePermutations.C
+Scheduled for add      tests/roseTests/astRewriteTests/testRewriteReplacementPermutations.C
+Scheduled for add      tests/roseTests/astRewriteTests/testTranslator2004_01.C
+Scheduled for add      tests/roseTests/loopProcessingTests/LoopProcessor.C
+Scheduled for add      tests/roseTests/loopProcessingTests/Makefile.am
+Scheduled for add      tests/roseTests/loopProcessingTests/TestLoopProcessor.C
+Scheduled for add      tests/roseTests/loopProcessingTests/lufac.C
+Scheduled for add      tests/roseTests/loopProcessingTests/matrix.c
+Scheduled for add      tests/roseTests/loopProcessingTests/mm.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rmatmult3.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_lufac.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_mm.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_rmatmult3.C
+Scheduled for add      tests/roseTests/loopProcessingTests/rose_tridvpk.C
+Scheduled for add      tests/roseTests/loopProcessingTests/tridvpk.C
********* Files Scheduled to be removed *********
-Scheduled for removal  AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
-Scheduled for removal  AST_RewriteMechanism/ASTRewrite.docs
-Scheduled for removal  AST_RewriteMechanism/Makefile.am
-Scheduled for removal  AST_RewriteMechanism/TauMidTraversal.h
-Scheduled for removal  AST_RewriteMechanism/highLevelRewriteInterface.h
-Scheduled for removal  AST_RewriteMechanism/inputProgram1.C
-Scheduled for removal  AST_RewriteMechanism/inputProgram2.C
-Scheduled for removal  AST_RewriteMechanism/inputProgram3.C
-Scheduled for removal  AST_RewriteMechanism/inputProgram4.C
-Scheduled for removal  AST_RewriteMechanism/lowLevelRewriteInterface.h
-Scheduled for removal  AST_RewriteMechanism/midLevelRewriteInterface.h
-Scheduled for removal  AST_RewriteMechanism/nodeCollection.C
-Scheduled for removal  AST_RewriteMechanism/nodeCollectionTemplates.C
-Scheduled for removal  AST_RewriteMechanism/prefixGeneration.C
-Scheduled for removal  AST_RewriteMechanism/rewrite.h
-Scheduled for removal  AST_RewriteMechanism/rewriteASTFragementString.C
-Scheduled for removal  AST_RewriteMechanism/rewriteASTFragementStringTemplates.C
-Scheduled for removal  AST_RewriteMechanism/rewriteAccumulatedAttribute.C
-Scheduled for removal  AST_RewriteMechanism/rewriteDebuggingSupport.C
-Scheduled for removal  AST_RewriteMechanism/rewriteDebuggingSupportTemplates.C
-Scheduled for removal  AST_RewriteMechanism/rewriteHighLevelInterface.C
-Scheduled for removal  AST_RewriteMechanism/rewriteLowLevelInterface.C
-Scheduled for removal  AST_RewriteMechanism/rewriteMidLevelInterface.C
-Scheduled for removal  AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
-Scheduled for removal  AST_RewriteMechanism/rewriteSynthesizedAttribute.C
-Scheduled for removal  AST_RewriteMechanism/rewriteSynthesizedAttributeTemplates.C
-Scheduled for removal  AST_RewriteMechanism/rewriteTreeTraversal.C
-Scheduled for removal  AST_RewriteMechanism/rewriteTypeDeclaration.C
-Scheduled for removal  AST_RewriteMechanism/tauProfiler.h
-Scheduled for removal  AST_RewriteMechanism/tauProtos.h
-Scheduled for removal  AST_RewriteMechanism/tauTestProgram.C
-Scheduled for removal  AST_RewriteMechanism/tauifyPreprocessor.C
-Scheduled for removal  AST_RewriteMechanism/testDeclarationPrefixGeneration.C
-Scheduled for removal  AST_RewriteMechanism/testDeclarationPrefixGeneration_testCode.C
-Scheduled for removal  AST_RewriteMechanism/testExample1.C
-Scheduled for removal  AST_RewriteMechanism/testMidLevelInterface.C
-Scheduled for removal  AST_RewriteMechanism/testNewRewrite.C
-Scheduled for removal  AST_RewriteMechanism/testNewRewrite.h
-Scheduled for removal  AST_RewriteMechanism/testRemoveStatements.C
-Scheduled for removal  AST_RewriteMechanism/testReplacementStatements.C
-Scheduled for removal  AST_RewriteMechanism/testRewritePermutations.C
-Scheduled for removal  AST_RewriteMechanism/testRewriteReplacementPermutations.C
-Scheduled for removal  AST_RewriteMechanism/testTranslator2004_01.C
-Scheduled for removal  Analysis/CPPAstInterface.C
-Scheduled for removal  Analysis/CPPAstInterface.h
-Scheduled for removal  Analysis/Makefile.am
-Scheduled for removal  Analysis/StmtInfoAnal.C
-Scheduled for removal  Analysis/StmtInfoAnal.h
-Scheduled for removal  AstProcessingLib/AgDefaultError.C
-Scheduled for removal  AstProcessingLib/AgDefaultError.h
-Scheduled for removal  AstProcessingLib/AgProcessing.C
-Scheduled for removal  AstProcessingLib/AgProcessing.h
-Scheduled for removal  AstProcessingLib/Ast.C
-Scheduled for removal  AstProcessingLib/Ast.h
-Scheduled for removal  AstProcessingLib/AstAttributeMechanism.h
-Scheduled for removal  AstProcessingLib/AstClearVisitFlags.C
-Scheduled for removal  AstProcessingLib/AstClearVisitFlags.h
-Scheduled for removal  AstProcessingLib/AstDOTGeneration.C
-Scheduled for removal  AstProcessingLib/AstDOTGeneration.h
-Scheduled for removal  AstProcessingLib/AstNodePtrs.C
-Scheduled for removal  AstProcessingLib/AstNodePtrs.h
-Scheduled for removal  AstProcessingLib/AstNodeScanner.C
-Scheduled for removal  AstProcessingLib/AstNodeScanner.h
-Scheduled for removal  AstProcessingLib/AstNodeVisitMapping.C
-Scheduled for removal  AstProcessingLib/AstNodeVisitMapping.h
-Scheduled for removal  AstProcessingLib/AstPDFGeneration.C
-Scheduled for removal  AstProcessingLib/AstPDFGeneration.h
-Scheduled for removal  AstProcessingLib/AstProcessing.C
-Scheduled for removal  AstProcessingLib/AstProcessing.docs
-Scheduled for removal  AstProcessingLib/AstProcessing.h
-Scheduled for removal  AstProcessingLib/AstRestructure.C
-Scheduled for removal  AstProcessingLib/AstRestructure.h
-Scheduled for removal  AstProcessingLib/AstReverseProcessing.C
-Scheduled for removal  AstProcessingLib/AstReverseProcessing.h
-Scheduled for removal  AstProcessingLib/AstReverseSimpleProcessing.C
-Scheduled for removal  AstProcessingLib/AstReverseSimpleProcessing.h
-Scheduled for removal  AstProcessingLib/AstSimpleProcessing.C
-Scheduled for removal  AstProcessingLib/AstSimpleProcessing.h
-Scheduled for removal  AstProcessingLib/AstStatistics.C
-Scheduled for removal  AstProcessingLib/AstStatistics.h
-Scheduled for removal  AstProcessingLib/AstSuccessorsSelectors.C
-Scheduled for removal  AstProcessingLib/AstSuccessorsSelectors.h
-Scheduled for removal  AstProcessingLib/AstTests.C
-Scheduled for removal  AstProcessingLib/AstTests.h
-Scheduled for removal  AstProcessingLib/AstTextAttributesHandling.C
-Scheduled for removal  AstProcessingLib/AstTextAttributesHandling.h
-Scheduled for removal  AstProcessingLib/AstTraversal.C
-Scheduled for removal  AstProcessingLib/AstTraversal.h
-Scheduled for removal  AstProcessingLib/AstTraverseToRoot.h
-Scheduled for removal  AstProcessingLib/Makefile.am
-Scheduled for removal  AstProcessingLib/abstractcppgrammar.atg
-Scheduled for removal  AstProcessingLib/sgnode.cpp
-Scheduled for removal  AstProcessingLib/sgnodec.hpp
-Scheduled for removal  AstProcessingLib/sgnodee.hpp
-Scheduled for removal  AstProcessingLib/sgnodep.cpp
-Scheduled for removal  AstProcessingLib/sgnodep.hpp
-Scheduled for removal  AstProcessingLib/sgnodes.hpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/Makefile.am
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agpp.atg
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agpp.cpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agppc.hpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agppe.hpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agppp.cpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agppp.hpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agpps.cpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/agpps.hpp
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/collect.c
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/collect.h
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/compile
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cra.h
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/crt.h
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/crx.h
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/set.c
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/set.h
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/compiler.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/cr.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/parser_c.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/parser_h.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/scan_c.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/cplus2/scan_h.frm
-Scheduled for removal  ContainerParallelizer/Container.annot
-Scheduled for removal  ContainerParallelizer/ContainerTransformer.C
-Scheduled for removal  ContainerParallelizer/Function.annot
-Scheduled for removal  ContainerParallelizer/Makefile.am
-Scheduled for removal  ContainerParallelizer/STLOpenMPTransformation.C
-Scheduled for removal  ContainerParallelizer/UserDefList.C
-Scheduled for removal  ContainerParallelizer/UserDefList.h
-Scheduled for removal  ContainerParallelizer/UserDefList2.C
-Scheduled for removal  ContainerParallelizer/UserDefList2b.C
-Scheduled for removal  ContainerParallelizer/UserDefList2c.C
-Scheduled for removal  ContainerParallelizer/UserDefList2d.C
-Scheduled for removal  ContainerParallelizer/UserDefList3.C
-Scheduled for removal  ContainerParallelizer/CPAnalysis/ContainerAnalyzer.C
-Scheduled for removal  ContainerParallelizer/CPAnalysis/Makefile.am
-Scheduled for removal  ContainerParallelizer/CPAnalysis/TestParallelLoop.C
-Scheduled for removal  ContainerParallelizer/CPAnalysis/TestParallelLoop.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformation.atg
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformation.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformationCocoCodes.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformationCocoErrorMessages.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformationParser.C
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformationParser.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/BodyTransformationParser_Declarations.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/Makefile.am
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformation.atg
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformationCocoCodes.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformationCocoErrorMessages.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser_Declarations.h
-Scheduled for removal  ContainerParallelizer/CPTransformation/compiler.frm
-Scheduled for removal  ContainerParallelizer/CPTransformation/notes.txt
-Scheduled for removal  ContainerParallelizer/CPTransformation/parser_c.frm
-Scheduled for removal  ContainerParallelizer/CPTransformation/parser_h.frm
-Scheduled for removal  EDG/Makefile.am
-Scheduled for removal  EDG/README
-Scheduled for removal  EDG/documentation.docs
-Scheduled for removal  EDG/save.C
-Scheduled for removal  EDG/stamp-h.in
-Scheduled for removal  EDG/bin/eccp
-Scheduled for removal  EDG/doc/README
-Scheduled for removal  EDG/doc/admin.tex
-Scheduled for removal  EDG/doc/c_deproto.tex
-Scheduled for removal  EDG/doc/c_gen_be.aux
-Scheduled for removal  EDG/doc/plm.log
-Scheduled for removal  EDG/doc/plm.ps
-Scheduled for removal  EDG/doc/plm.toc
-Scheduled for removal  EDG/doc/psit
-Scheduled for removal  EDG/errinfo/Makefile.am
-Scheduled for removal  EDG/include/Changes
-Scheduled for removal  EDG/include/assert.h
-Scheduled for removal  EDG/include/ctype.h
-Scheduled for removal  EDG/include/errno.h
-Scheduled for removal  EDG/include/exception.h
-Scheduled for removal  EDG/include/float.h
-Scheduled for removal  EDG/include/iso646.h
-Scheduled for removal  EDG/include/limits.h
-Scheduled for removal  EDG/include/locale.h
-Scheduled for removal  EDG/include/math.h
-Scheduled for removal  EDG/include/new.h
-Scheduled for removal  EDG/include/setjmp.h
-Scheduled for removal  EDG/include/signal.h
-Scheduled for removal  EDG/include/stdarg.h
-Scheduled for removal  EDG/include/stddef.h
-Scheduled for removal  EDG/include/stdexcept.h
-Scheduled for removal  EDG/include/stdio.h
-Scheduled for removal  EDG/include/stdlib.h
-Scheduled for removal  EDG/include/string.h
-Scheduled for removal  EDG/include/time.h
-Scheduled for removal  EDG/include/typeinfo.h
-Scheduled for removal  EDG/lib/.pure
-Scheduled for removal  EDG/lib_src/Changes
-Scheduled for removal  EDG/lib_src/Makefile
-Scheduled for removal  EDG/lib_src/array_del.c
-Scheduled for removal  EDG/lib_src/array_new.c
-Scheduled for removal  EDG/lib_src/array_nonew.c
-Scheduled for removal  EDG/lib_src/array_pdel.c
-Scheduled for removal  EDG/lib_src/array_pnew.c
-Scheduled for removal  EDG/lib_src/bad_alloc.c
-Scheduled for removal  EDG/lib_src/basics.h
-Scheduled for removal  EDG/lib_src/config.h
-Scheduled for removal  EDG/lib_src/defines.h
-Scheduled for removal  EDG/lib_src/delete.c
-Scheduled for removal  EDG/lib_src/dtor_list.c
-Scheduled for removal  EDG/lib_src/dtor_list.h
-Scheduled for removal  EDG/lib_src/edg_exit.c
-Scheduled for removal  EDG/lib_src/edg_exit.h
-Scheduled for removal  EDG/lib_src/eh.h
-Scheduled for removal  EDG/lib_src/eh_util.c
-Scheduled for removal  EDG/lib_src/exception.c
-Scheduled for removal  EDG/lib_src/exit.c
-Scheduled for removal  EDG/lib_src/lib_eccp
-Scheduled for removal  EDG/lib_src/main.c
-Scheduled for removal  EDG/lib_src/main.h
-Scheduled for removal  EDG/lib_src/memzero.c
-Scheduled for removal  EDG/lib_src/munch_ctors.c
-Scheduled for removal  EDG/lib_src/munch_dtors.c
-Scheduled for removal  EDG/lib_src/new.c
-Scheduled for removal  EDG/lib_src/newnothrow.c
-Scheduled for removal  EDG/lib_src/placedel.c
-Scheduled for removal  EDG/lib_src/placenew.c
-Scheduled for removal  EDG/lib_src/pure_virt.c
-Scheduled for removal  EDG/lib_src/rtti.c
-Scheduled for removal  EDG/lib_src/rtti.h
-Scheduled for removal  EDG/lib_src/runtime.h
-Scheduled for removal  EDG/lib_src/set_new.c
-Scheduled for removal  EDG/lib_src/static_init.c
-Scheduled for removal  EDG/lib_src/static_init.h
-Scheduled for removal  EDG/lib_src/stdexcept.c
-Scheduled for removal  EDG/lib_src/throw.c
-Scheduled for removal  EDG/lib_src/typeinfo.c
-Scheduled for removal  EDG/lib_src/vars.c
-Scheduled for removal  EDG/lib_src/vec_cctor.c
-Scheduled for removal  EDG/lib_src/vec_newdel.c
-Scheduled for removal  EDG/lib_src/vec_newdel.h
-Scheduled for removal  EDG/lib_src/vtbl.h
-Scheduled for removal  EDG/misc/Makefile.am
-Scheduled for removal  EDG/misc/Makefile.pcc
-Scheduled for removal  EDG/misc/c_deproto.c
-Scheduled for removal  EDG/misc/dettarg.c
-Scheduled for removal  EDG/misc/mk_errinfo.c
-Scheduled for removal  EDG/misc/t.C
-Scheduled for removal  EDG/src/Changes
-Scheduled for removal  EDG/src/Makefile.am
-Scheduled for removal  EDG/src/Makefile.ccpp
-Scheduled for removal  EDG/src/Makefile.in.original
-Scheduled for removal  EDG/src/Makefile.original
-Scheduled for removal  EDG/src/Makefile.pcc
-Scheduled for removal  EDG/src/Makefile.sc
-Scheduled for removal  EDG/src/Patches
-Scheduled for removal  EDG/src/alternativeEdgSageInterface.C
-Scheduled for removal  EDG/src/basic_hdrs.h
-Scheduled for removal  EDG/src/basics.h
-Scheduled for removal  EDG/src/c_gen_be.c
-Scheduled for removal  EDG/src/c_gen_be.h
-Scheduled for removal  EDG/src/cfe.c
-Scheduled for removal  EDG/src/class_decl.c
-Scheduled for removal  EDG/src/class_decl.h
-Scheduled for removal  EDG/src/cmd_line.c
-Scheduled for removal  EDG/src/cmd_line.h
-Scheduled for removal  EDG/src/const_ints.c
-Scheduled for removal  EDG/src/const_ints.h
-Scheduled for removal  EDG/src/cp_gen_be.c
-Scheduled for removal  EDG/src/cp_gen_be.c.diff_from_2.41
-Scheduled for removal  EDG/src/cp_gen_be.h
-Scheduled for removal  EDG/src/debug.c
-Scheduled for removal  EDG/src/debug.h
-Scheduled for removal  EDG/src/debugging.C
-Scheduled for removal  EDG/src/debugging.h
-Scheduled for removal  EDG/src/decl_hdrs.h
-Scheduled for removal  EDG/src/decl_inits.c
-Scheduled for removal  EDG/src/decl_inits.h
-Scheduled for removal  EDG/src/decl_spec.c
-Scheduled for removal  EDG/src/decl_spec.h
-Scheduled for removal  EDG/src/declarator.c
-Scheduled for removal  EDG/src/declarator.h
-Scheduled for removal  EDG/src/decls.c
-Scheduled for removal  EDG/src/decls.h
-Scheduled for removal  EDG/src/def_arg.c
-Scheduled for removal  EDG/src/def_arg.h
-Scheduled for removal  EDG/src/defines.h
-Scheduled for removal  EDG/src/defines.h.proto
-Scheduled for removal  EDG/src/disambig.c
-Scheduled for removal  EDG/src/disambig.h
-Scheduled for removal  EDG/src/displayTree.C
-Scheduled for removal  EDG/src/displayTree.h
-Scheduled for removal  EDG/src/edg.cfg
-Scheduled for removal  EDG/src/err_codes.h
-Scheduled for removal  EDG/src/err_data.h
-Scheduled for removal  EDG/src/error.c
-Scheduled for removal  EDG/src/error.h
-Scheduled for removal  EDG/src/error_msg.txt
-Scheduled for removal  EDG/src/error_tag.txt
-Scheduled for removal  EDG/src/expr.c
-Scheduled for removal  EDG/src/expr.h
-Scheduled for removal  EDG/src/expr_hdrs.h
-Scheduled for removal  EDG/src/exprutil.c
-Scheduled for removal  EDG/src/exprutil.h
-Scheduled for removal  EDG/src/fe_common.h
-Scheduled for removal  EDG/src/fe_init.c
-Scheduled for removal  EDG/src/fe_init.h
-Scheduled for removal  EDG/src/fe_wrapup.c
-Scheduled for removal  EDG/src/fe_wrapup.h
-Scheduled for removal  EDG/src/float_pt.c
-Scheduled for removal  EDG/src/float_pt.h
-Scheduled for removal  EDG/src/folding.c
-Scheduled for removal  EDG/src/folding.h
-Scheduled for removal  EDG/src/func_def.c
-Scheduled for removal  EDG/src/func_def.h
-Scheduled for removal  EDG/src/host_envir.c
-Scheduled for removal  EDG/src/host_envir.h
-Scheduled for removal  EDG/src/il.c
-Scheduled for removal  EDG/src/il.h
-Scheduled for removal  EDG/src/il_alloc.c
-Scheduled for removal  EDG/src/il_alloc.h
-Scheduled for removal  EDG/src/il_def.h
-Scheduled for removal  EDG/src/il_display.c
-Scheduled for removal  EDG/src/il_display.h
-Scheduled for removal  EDG/src/il_file.h
-Scheduled for removal  EDG/src/il_read.c
-Scheduled for removal  EDG/src/il_read.h
-Scheduled for removal  EDG/src/il_to_str.c
-Scheduled for removal  EDG/src/il_to_str.h
-Scheduled for removal  EDG/src/il_walk.c
-Scheduled for removal  EDG/src/il_walk.h
-Scheduled for removal  EDG/src/il_write.c
-Scheduled for removal  EDG/src/il_write.h
-Scheduled for removal  EDG/src/inline.c
-Scheduled for removal  EDG/src/inline.h
-Scheduled for removal  EDG/src/lang_feat.h
-Scheduled for removal  EDG/src/layout.c
-Scheduled for removal  EDG/src/layout.h
-Scheduled for removal  EDG/src/lexical.c
-Scheduled for removal  EDG/src/lexical.h
-Scheduled for removal  EDG/src/literals.c
-Scheduled for removal  EDG/src/literals.h
-Scheduled for removal  EDG/src/lookup.c
-Scheduled for removal  EDG/src/lookup.h
-Scheduled for removal  EDG/src/lower_eh.c
-Scheduled for removal  EDG/src/lower_eh.h
-Scheduled for removal  EDG/src/lower_hdrs.h
-Scheduled for removal  EDG/src/lower_il.c
-Scheduled for removal  EDG/src/lower_il.h
-Scheduled for removal  EDG/src/lower_init.c
-Scheduled for removal  EDG/src/lower_init.h
-Scheduled for removal  EDG/src/lower_name.c
-Scheduled for removal  EDG/src/lower_name.h
-Scheduled for removal  EDG/src/macro.c
-Scheduled for removal  EDG/src/macro.h
-Scheduled for removal  EDG/src/mem_manage.c
-Scheduled for removal  EDG/src/mem_manage.h
-Scheduled for removal  EDG/src/mem_tables.h
-Scheduled for removal  EDG/src/olddefines.h
-Scheduled for removal  EDG/src/overload.c
-Scheduled for removal  EDG/src/overload.h
-Scheduled for removal  EDG/src/patch1
-Scheduled for removal  EDG/src/pch.c
-Scheduled for removal  EDG/src/pch.h
-Scheduled for removal  EDG/src/pragma.c
-Scheduled for removal  EDG/src/pragma.h
-Scheduled for removal  EDG/src/preproc.c
-Scheduled for removal  EDG/src/preproc.h
-Scheduled for removal  EDG/src/sageCommonSourceHeader.h
-Scheduled for removal  EDG/src/sageFunctionPrototypes.h
-Scheduled for removal  EDG/src/sageGlobalVar.h
-Scheduled for removal  EDG/src/sageInlineFunctions.h
-Scheduled for removal  EDG/src/sageMacros.h
-Scheduled for removal  EDG/src/sagePreInit.C
-Scheduled for removal  EDG/src/sagePreInit.h
-Scheduled for removal  EDG/src/sagePreInitGlobalVar.h
-Scheduled for removal  EDG/src/sageSupport.C
-Scheduled for removal  EDG/src/sageSupport.h
-Scheduled for removal  EDG/src/sageTypedefs.h
-Scheduled for removal  EDG/src/sage_cfe.C
-Scheduled for removal  EDG/src/sage_debug.C
-Scheduled for removal  EDG/src/sage_gen_be.C
-Scheduled for removal  EDG/src/sage_gen_be.h
-Scheduled for removal  EDG/src/sage_il_to_str.C
-Scheduled for removal  EDG/src/sage_il_to_str.h
-Scheduled for removal  EDG/src/save-preproc.c
-Scheduled for removal  EDG/src/scope_stk.c
-Scheduled for removal  EDG/src/scope_stk.h
-Scheduled for removal  EDG/src/sgidefines.h
-Scheduled for removal  EDG/src/statements.c
-Scheduled for removal  EDG/src/statements.h
-Scheduled for removal  EDG/src/sundefines.h
-Scheduled for removal  EDG/src/symbol_ref.c
-Scheduled for removal  EDG/src/symbol_ref.h
-Scheduled for removal  EDG/src/symbol_tbl.c
-Scheduled for removal  EDG/src/symbol_tbl.h
-Scheduled for removal  EDG/src/sys_predef.c
-Scheduled for removal  EDG/src/sys_predef.h
-Scheduled for removal  EDG/src/targ_def.h
-Scheduled for removal  EDG/src/target.c
-Scheduled for removal  EDG/src/target.h
-Scheduled for removal  EDG/src/templates.c
-Scheduled for removal  EDG/src/templates.h
-Scheduled for removal  EDG/src/types.c
-Scheduled for removal  EDG/src/types.h
-Scheduled for removal  EDG/src/version.h
-Scheduled for removal  EDG/src/walk_entry.h
-Scheduled for removal  EDG/src/SAVE/sage_il_to_str.C
-Scheduled for removal  EDG/src/SAVE/sage_il_to_str.h
-Scheduled for removal  EDG/src/disp/Makefile
-Scheduled for removal  EDG/src/disp/Makefile.ccpp
-Scheduled for removal  EDG/src/disp/Makefile.pcc
-Scheduled for removal  EDG/src/disp/mklinks
-Scheduled for removal  EDG/util/Changes
-Scheduled for removal  EDG/util/Makefile.am
-Scheduled for removal  EDG/util/Makefile.pcc
-Scheduled for removal  EDG/util/decode.c
-Scheduled for removal  EDG/util/decode.h
-Scheduled for removal  EDG/util/edg_decode.c
-Scheduled for removal  EDG/util/edg_munch.c
-Scheduled for removal  EDG/util/edg_munch.h
-Scheduled for removal  EDG/util/edg_prelink.c
-Scheduled for removal  EDG/util/edg_prelink.h
-Scheduled for removal  EDG/util/getopt.h
-Scheduled for removal  EXAMPLES/Makefile.am
-Scheduled for removal  EXAMPLES/README
-Scheduled for removal  EXAMPLES/arraytest.C
-Scheduled for removal  EXAMPLES/dec_optimized.txt
-Scheduled for removal  EXAMPLES/example.C
-Scheduled for removal  EXAMPLES/exampleOutput.C
-Scheduled for removal  EXAMPLES/for.C
-Scheduled for removal  EXAMPLES/performance.C
-Scheduled for removal  EXAMPLES/performance.C.b00
-Scheduled for removal  EXAMPLES/performance.out
-Scheduled for removal  EXAMPLES/performance_2.out
-Scheduled for removal  EXAMPLES/performance_multitime.out
-Scheduled for removal  EXAMPLES/return_type_problem.txt
-Scheduled for removal  EXAMPLES/riemann.C
-Scheduled for removal  EXAMPLES/riemann.int.c
-Scheduled for removal  EXAMPLES/rose.C
-Scheduled for removal  EXAMPLES/roseTransformationProgramTree.show
-Scheduled for removal  EXAMPLES/rose_test1.C
-Scheduled for removal  EXAMPLES/rose_test2.C
-Scheduled for removal  EXAMPLES/rose_unparse.C
-Scheduled for removal  EXAMPLES/runRose
-Scheduled for removal  EXAMPLES/simple.C
-Scheduled for removal  EXAMPLES/simple.C.original
-Scheduled for removal  EXAMPLES/simple.C.roseShow_roseTemplates
-Scheduled for removal  EXAMPLES/simple.C.roseShow_t2
-Scheduled for removal  EXAMPLES/simple.h
-Scheduled for removal  EXAMPLES/simple.int.c
-Scheduled for removal  EXAMPLES/simple.out
-Scheduled for removal  EXAMPLES/simple.out.diff
-Scheduled for removal  EXAMPLES/simple__app_sage2.out
-Scheduled for removal  EXAMPLES/simple_app.out
-Scheduled for removal  EXAMPLES/simple_app_sage2.out
-Scheduled for removal  EXAMPLES/simple_local_2_app.out
-Scheduled for removal  EXAMPLES/simple_local_3_app.out
-Scheduled for removal  EXAMPLES/simple_local_app.out
-Scheduled for removal  EXAMPLES/simple_sage2.out
-Scheduled for removal  EXAMPLES/simple_unparse.C
-Scheduled for removal  EXAMPLES/temp_test1.C
-Scheduled for removal  EXAMPLES/templates.h
-Scheduled for removal  EXAMPLES/test1.C
-Scheduled for removal  EXAMPLES/test1.C.roseShow_roseTemplates
-Scheduled for removal  EXAMPLES/test1.C.roseShow_t2
-Scheduled for removal  EXAMPLES/test1.int.c
-Scheduled for removal  EXAMPLES/test1.out
-Scheduled for removal  EXAMPLES/test1_script
-Scheduled for removal  EXAMPLES/test2.C
-Scheduled for removal  EXAMPLES/test2.C.original
-Scheduled for removal  EXAMPLES/test2.int.c
-Scheduled for removal  EXAMPLES/test2_script
-Scheduled for removal  EXAMPLES/test3.C
-Scheduled for removal  EXAMPLES/testrun.log
-Scheduled for removal  EXAMPLES/xFDerivative.C
-Scheduled for removal  ExamplePreprocessors/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/TODO.txt
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayPreprocessor.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayTransformationSupport.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayTransformationSupport.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/arrayVariableDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/convect.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/convectFragment.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/documentation.txt
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/indexVariableDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/instrumentationExample.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/multiTransformExample.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/operandDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/operandDataBase.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/programTransformation.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/programTransformation.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/simpleA++.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testApp.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_01.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_02.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_03.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_04.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_05.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_06.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testAxx2002_07.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testCodeTemplate.inc
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/testNewTraversal.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacro-length.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacro-size.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacro-stride.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacro-uniform_size.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacro-variable_size.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationMacros.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationOptions.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationOptions.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/transformationSubscriptMacros.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/database.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/indexDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/AST.ps
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/indirectAddressingCode.txt
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/kullTalk.ps
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/kullTalk.tex
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/listings.sty
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/lstlang1.sty
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/lstlang2.sty
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/lstmisc.sty
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/rose_testAxx2002_02.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/talk.C
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/talk.tex
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/talk2.tex
-Scheduled for removal  ExamplePreprocessors/A++P++Preprocessor/docs/talk3.tex
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ROSE_Transformations.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/array_class_interface.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/array_class_interface.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/optimizingArrayPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/optimizingArrayPreprocessor.C.b00
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayFunctionExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayOperandExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayParenthesisOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArraySQRT.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayVariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorAdd.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorEquals.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_BinaryArrayOperatorMultiply.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_Expression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_Statement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_C_VariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ElseWhereStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_Expression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ExpressionStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_ForStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_IfStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_RealArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_Statement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_StatementBlock.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_UserFunction.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_VariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_WhereStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_doubleArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_floatArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/classDeclarationBody_ROSE_intArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/design.txt
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/grammar.h.original
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/grammar.perl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/grammarClassDeclatationMacros.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/grammarClassDefinitionMacros.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayFunctionExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayOperandExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayParenthesisOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArraySQRT.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayVariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperator.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorAdd.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorEquals.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_BinaryArrayOperatorMultiply.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_Expression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_Statement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_C_VariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ElseWhereStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Expression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ExpressionStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_ForStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_IfStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Node.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_RealArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_Statement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_StatementBlock.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_UserFunction.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_VariableDeclaration.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_WhereStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_doubleArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_floatArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/memberFunctionDefinition_ROSE_intArrayVariableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/node.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/roseVariants.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/transform_2.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/transformation_2.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/transformation_2.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/ROSE_TRANSFORMATION_SOURCE_3.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_NonTransformableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_NonTransformableStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorEquals.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableBinaryOperatorNonAssignment.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableOperandExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableStatementBlock.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/classDeclarationBody_ROSE_TransformableUnaryOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/grammar.perl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/grammarClassDeclatationMacros.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/grammarClassDefinitionMacros.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/grammar_3.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/grammar_3.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_NonTransformableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_NonTransformableStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorEquals.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableBinaryOperatorNonAssignment.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableNode.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableOperandExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableStatement.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableStatementBlock.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/memberFunctionDefinition_ROSE_TransformableUnaryOperatorExpression.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/node.macro
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/operandDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/statementDataBase.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/supported_dimensions.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/transform_3.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/transformation_3.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/transformation_3.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ListT/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ListT/Ref.ps
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ListT/Ref.tex
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ListT/tlist.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/ListT/tlist.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/Makefile.Christian
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/alignData.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/alignData.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/arrayInfo.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/arrayInfo.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/arrayReference.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/arrayReference.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/cacheInfo.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/cacheInfo.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/dependencies.incl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/ofiles.incl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/padding_conditions.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/padding_conditions.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/padding_tools.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/padding_tools.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/Padding/testPad.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/ArrayPaddingTransform.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/ArrayPaddingTransform.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/Makefile.Christian
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/aptScope.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/aptScope.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/aptScopeType.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/arrayDeclInfo.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/arrayDeclInfo.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/arrayRefInfo.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/arrayRefInfo.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/dependencies.incl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/ofiles.incl
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/pad_transform.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/PaddingTrans/pad_transform.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/Makefile.am
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/TransformationBase.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/TransformationBase.h
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/copy.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/edit.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/targetTemplateFunction.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/transformationTemplate.C
-Scheduled for removal  ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/transformationTemplateFunction.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/accessPatternPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTest_1.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTransformation.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTransformation.h
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/accumulatorAttribute.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/inheritedAttribute.C
-Scheduled for removal  ExamplePreprocessors/AccessPatternPreprocessor/synthesizedAttribute.C
-Scheduled for removal  ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/AnalysisPreprocessor/programAnalysis.C
-Scheduled for removal  ExamplePreprocessors/AstCopyReplTester/Makefile.am
-Scheduled for removal  ExamplePreprocessors/AstCopyReplTester/astCopyReplTest.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/TODO.txt
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelTest_1.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelTest_2.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelTest_3.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelTransformation.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/babelTransformation.h
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/options.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/simpleA++.h
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/transformationOptions.C
-Scheduled for removal  ExamplePreprocessors/BabelPreprocessor/transformationOptions.h
-Scheduled for removal  ExamplePreprocessors/DOTGenerator/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DOTGenerator/dotGenerator.C
-Scheduled for removal  ExamplePreprocessors/DOTGenerator/testdot_01.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/README.txt
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/accumulatorAttribute.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureFunction.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructurePreprocessor.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_1.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_2.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_3.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.h
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/inheritedAttribute.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/nodeAttributeProperty.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/options.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/printData.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/printDataTest.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/sidlFunction.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/simpleA++.h
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/synthesizedAttribute.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/transformationOptions.C
-Scheduled for removal  ExamplePreprocessors/DataStructurePreprocessor/transformationOptions.h
-Scheduled for removal  ExamplePreprocessors/DefaultPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DefaultPreprocessor/defaultPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/identityPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteExample1.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteInterfaceFunction.codeFragment
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/exampleRewrite1.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/inputRewrite1.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/customtable_example.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/databasegraph_example.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/interfaces_example.h
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/rosedb_example.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/DataBaseExamples/simplecallgraph_example.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AST-dot1.ps
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AST-pdf2.ps
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AstPdfOutputPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AstTraversalPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/astOutput.codeFragment
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/commandLineProcessingExample.C
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/exampleMakefile.in
-Scheduled for removal  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/identityPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/example.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/example_support.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/example_support.c
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/intone.h
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/nanos.h
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/nanosBug.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/parallelSTLQuery.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/parallelSTLQuery_testFile.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_01.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_02.C
-Scheduled for removal  ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_03.C
-Scheduled for removal  ExamplePreprocessors/OverturePreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/PDFGenerator/Makefile.am
-Scheduled for removal  ExamplePreprocessors/PDFGenerator/pdfGenerator.C
-Scheduled for removal  ExamplePreprocessors/SvPabloPreprocessor/Makefile.am
-Scheduled for removal  ExamplePreprocessors/SvPabloPreprocessor/svPabloPreprocessor.C
-Scheduled for removal  ExamplePreprocessors/SvPabloPreprocessor/testPablo.C
-Scheduled for removal  LoopProcessing/HackTemplate.C
-Scheduled for removal  LoopProcessing/LoopProcessor.C
-Scheduled for removal  LoopProcessing/LoopTransformInterface.C
-Scheduled for removal  LoopProcessing/LoopTransformInterface.h
-Scheduled for removal  LoopProcessing/Makefile.am
-Scheduled for removal  LoopProcessing/computation/LoopInfo.h
-Scheduled for removal  LoopProcessing/computation/LoopTree.C
-Scheduled for removal  LoopProcessing/computation/LoopTree.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeBuild.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeDepComp.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeDepComp.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeDummyNode.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeDummyNode.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeHoldNode.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeLocality.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeNodeType.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeObserver.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeOptimize.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeShadow.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeShadow.h
-Scheduled for removal  LoopProcessing/computation/LoopTreeTransform.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeTransform.h
-Scheduled for removal  LoopProcessing/computation/Makefile.am
-Scheduled for removal  LoopProcessing/depGraph/DepGraph.h
-Scheduled for removal  LoopProcessing/depGraph/DepGraphBuild.C
-Scheduled for removal  LoopProcessing/depGraph/DepGraphBuild.h
-Scheduled for removal  LoopProcessing/depGraph/DepGraphTransform.C
-Scheduled for removal  LoopProcessing/depGraph/DepGraphTransform.h
-Scheduled for removal  LoopProcessing/depGraph/LoopAnalysis.C
-Scheduled for removal  LoopProcessing/depGraph/LoopAnalysis.h
-Scheduled for removal  LoopProcessing/depGraph/Makefile.am
-Scheduled for removal  LoopProcessing/depGraph/TransDepGraph.C
-Scheduled for removal  LoopProcessing/depGraph/TransDepGraph.h
-Scheduled for removal  LoopProcessing/depInfo/DepEDD.C
-Scheduled for removal  LoopProcessing/depInfo/DepEDD.h
-Scheduled for removal  LoopProcessing/depInfo/DepInfo.C
-Scheduled for removal  LoopProcessing/depInfo/DepInfo.h
-Scheduled for removal  LoopProcessing/depInfo/DepInfoAnal.C
-Scheduled for removal  LoopProcessing/depInfo/DepInfoAnal.h
-Scheduled for removal  LoopProcessing/depInfo/DepInfoAnalImpl.C
-Scheduled for removal  LoopProcessing/depInfo/DepInfoSet.C
-Scheduled for removal  LoopProcessing/depInfo/DepInfoSet.h
-Scheduled for removal  LoopProcessing/depInfo/DepInfoUpdate.h
-Scheduled for removal  LoopProcessing/depInfo/DepRel.C
-Scheduled for removal  LoopProcessing/depInfo/DepRel.h
-Scheduled for removal  LoopProcessing/depInfo/DomainInfo.C
-Scheduled for removal  LoopProcessing/depInfo/DomainInfo.h
-Scheduled for removal  LoopProcessing/depInfo/DomainInfoUpdate.h
-Scheduled for removal  LoopProcessing/depInfo/Makefile.am
-Scheduled for removal  LoopProcessing/depInfo/StmtDepAnal.C
-Scheduled for removal  LoopProcessing/driver/BlockingAnal.C
-Scheduled for removal  LoopProcessing/driver/BlockingAnal.h
-Scheduled for removal  LoopProcessing/driver/FusionAnal.C
-Scheduled for removal  LoopProcessing/driver/FusionAnal.h
-Scheduled for removal  LoopProcessing/driver/InterchangeAnal.C
-Scheduled for removal  LoopProcessing/driver/InterchangeAnal.h
-Scheduled for removal  LoopProcessing/driver/LoopTransformOptions.C
-Scheduled for removal  LoopProcessing/driver/LoopTransformOptions.h
-Scheduled for removal  LoopProcessing/driver/Makefile.am
-Scheduled for removal  LoopProcessing/driver/TransformAstTree.C
-Scheduled for removal  LoopProcessing/driver/TransformAstTree.h
-Scheduled for removal  LoopProcessing/driver/TransformComputation.C
-Scheduled for removal  LoopProcessing/driver/TypedFusionImpl.C
-Scheduled for removal  LoopProcessing/slicing/CompSlice.C
-Scheduled for removal  LoopProcessing/slicing/CompSlice.h
-Scheduled for removal  LoopProcessing/slicing/CompSliceDepGraph.C
-Scheduled for removal  LoopProcessing/slicing/CompSliceDepGraph.h
-Scheduled for removal  LoopProcessing/slicing/CompSliceImpl.h
-Scheduled for removal  LoopProcessing/slicing/CompSliceLocality.C
-Scheduled for removal  LoopProcessing/slicing/CompSliceLocality.h
-Scheduled for removal  LoopProcessing/slicing/CompSliceObserver.h
-Scheduled for removal  LoopProcessing/slicing/CompSliceRegistry.h
-Scheduled for removal  LoopProcessing/slicing/DependenceHoisting.C
-Scheduled for removal  LoopProcessing/slicing/DynamicCompSlice.C
-Scheduled for removal  LoopProcessing/slicing/DynamicCompSlice.h
-Scheduled for removal  LoopProcessing/slicing/Makefile.am
-Scheduled for removal  LoopProcessing/test/Makefile.am
-Scheduled for removal  LoopProcessing/test/TestLoopProcessor.C
-Scheduled for removal  LoopProcessing/test/lufac.C
-Scheduled for removal  LoopProcessing/test/matrix.c
-Scheduled for removal  LoopProcessing/test/mm.C
-Scheduled for removal  LoopProcessing/test/rmatmult3.C
-Scheduled for removal  LoopProcessing/test/rose_lufac.C
-Scheduled for removal  LoopProcessing/test/rose_mm.C
-Scheduled for removal  LoopProcessing/test/rose_rmatmult3.C
-Scheduled for removal  LoopProcessing/test/rose_tridvpk.C
-Scheduled for removal  LoopProcessing/test/tridvpk.C
-Scheduled for removal  MSTL/AttributeMechanism.C
-Scheduled for removal  MSTL/AttributeMechanism.h
-Scheduled for removal  MSTL/DOTGeneration.C
-Scheduled for removal  MSTL/DOTGeneration.h
-Scheduled for removal  MSTL/DOTGraphInterface.C
-Scheduled for removal  MSTL/DOTGraphInterface.h
-Scheduled for removal  MSTL/DOTRepresentation.C
-Scheduled for removal  MSTL/DOTRepresentation.h
-Scheduled for removal  MSTL/DOTSubgraphRepresentation.C
-Scheduled for removal  MSTL/DOTSubgraphRepresentation.h
-Scheduled for removal  MSTL/MSTL.docs
-Scheduled for removal  MSTL/Makefile.am
-Scheduled for removal  MSTL/PDFGeneration.C
-Scheduled for removal  MSTL/PDFGeneration.h
-Scheduled for removal  MSTL/Translator.h
-Scheduled for removal  MSTL/TreeTraversal.C
-Scheduled for removal  MSTL/TreeTraversal.h
-Scheduled for removal  NEW_EDG/Makefile
-Scheduled for removal  NEW_EDG/README
-Scheduled for removal  NEW_EDG/bin/eccp
-Scheduled for removal  NEW_EDG/doc/README
-Scheduled for removal  NEW_EDG/doc/plm.ps
-Scheduled for removal  NEW_EDG/include/Changes
-Scheduled for removal  NEW_EDG/include/assert.h
-Scheduled for removal  NEW_EDG/include/ctype.h
-Scheduled for removal  NEW_EDG/include/errno.h
-Scheduled for removal  NEW_EDG/include/exception.h
-Scheduled for removal  NEW_EDG/include/float.h
-Scheduled for removal  NEW_EDG/include/iso646.h
-Scheduled for removal  NEW_EDG/include/limits.h
-Scheduled for removal  NEW_EDG/include/locale.h
-Scheduled for removal  NEW_EDG/include/math.h
-Scheduled for removal  NEW_EDG/include/new.h
-Scheduled for removal  NEW_EDG/include/setjmp.h
-Scheduled for removal  NEW_EDG/include/signal.h
-Scheduled for removal  NEW_EDG/include/stdarg.h
-Scheduled for removal  NEW_EDG/include/stddef.h
-Scheduled for removal  NEW_EDG/include/stdexcept.h
-Scheduled for removal  NEW_EDG/include/stdio.h
-Scheduled for removal  NEW_EDG/include/stdlib.h
-Scheduled for removal  NEW_EDG/include/string.h
-Scheduled for removal  NEW_EDG/include/time.h
-Scheduled for removal  NEW_EDG/include/typeinfo.h
-Scheduled for removal  NEW_EDG/lib_src/Changes
-Scheduled for removal  NEW_EDG/lib_src/Makefile
-Scheduled for removal  NEW_EDG/lib_src/array_del.c
-Scheduled for removal  NEW_EDG/lib_src/array_new.c
-Scheduled for removal  NEW_EDG/lib_src/array_nonew.c
-Scheduled for removal  NEW_EDG/lib_src/array_pdel.c
-Scheduled for removal  NEW_EDG/lib_src/array_pnew.c
-Scheduled for removal  NEW_EDG/lib_src/bad_alloc.c
-Scheduled for removal  NEW_EDG/lib_src/basics.h
-Scheduled for removal  NEW_EDG/lib_src/config.h
-Scheduled for removal  NEW_EDG/lib_src/defines.h
-Scheduled for removal  NEW_EDG/lib_src/delete.c
-Scheduled for removal  NEW_EDG/lib_src/dtor_list.c
-Scheduled for removal  NEW_EDG/lib_src/dtor_list.h
-Scheduled for removal  NEW_EDG/lib_src/edg_exit.c
-Scheduled for removal  NEW_EDG/lib_src/edg_exit.h
-Scheduled for removal  NEW_EDG/lib_src/eh.h
-Scheduled for removal  NEW_EDG/lib_src/eh_util.c
-Scheduled for removal  NEW_EDG/lib_src/exception.c
-Scheduled for removal  NEW_EDG/lib_src/exit.c
-Scheduled for removal  NEW_EDG/lib_src/lib_eccp
-Scheduled for removal  NEW_EDG/lib_src/main.c
-Scheduled for removal  NEW_EDG/lib_src/main.h
-Scheduled for removal  NEW_EDG/lib_src/memzero.c
-Scheduled for removal  NEW_EDG/lib_src/munch_ctors.c
-Scheduled for removal  NEW_EDG/lib_src/munch_dtors.c
-Scheduled for removal  NEW_EDG/lib_src/new.c
-Scheduled for removal  NEW_EDG/lib_src/newhandler.c
-Scheduled for removal  NEW_EDG/lib_src/newnothrow.c
-Scheduled for removal  NEW_EDG/lib_src/placedel.c
-Scheduled for removal  NEW_EDG/lib_src/placenew.c
-Scheduled for removal  NEW_EDG/lib_src/pure_virt.c
-Scheduled for removal  NEW_EDG/lib_src/rtti.c
-Scheduled for removal  NEW_EDG/lib_src/rtti.h
-Scheduled for removal  NEW_EDG/lib_src/runtime.h
-Scheduled for removal  NEW_EDG/lib_src/set_new.c
-Scheduled for removal  NEW_EDG/lib_src/static_init.c
-Scheduled for removal  NEW_EDG/lib_src/static_init.h
-Scheduled for removal  NEW_EDG/lib_src/stdexcept.c
-Scheduled for removal  NEW_EDG/lib_src/throw.c
-Scheduled for removal  NEW_EDG/lib_src/typeinfo.c
-Scheduled for removal  NEW_EDG/lib_src/vars.c
-Scheduled for removal  NEW_EDG/lib_src/vec_cctor.c
-Scheduled for removal  NEW_EDG/lib_src/vec_newdel.c
-Scheduled for removal  NEW_EDG/lib_src/vec_newdel.h
-Scheduled for removal  NEW_EDG/lib_src/vtbl.h
-Scheduled for removal  NEW_EDG/misc/Makefile
-Scheduled for removal  NEW_EDG/misc/Makefile.pcc
-Scheduled for removal  NEW_EDG/misc/c_deproto.c
-Scheduled for removal  NEW_EDG/misc/dettarg.c
-Scheduled for removal  NEW_EDG/misc/mk_errinfo.c
-Scheduled for removal  NEW_EDG/src/Changes
-Scheduled for removal  NEW_EDG/src/Makefile
-Scheduled for removal  NEW_EDG/src/Makefile.pcc
-Scheduled for removal  NEW_EDG/src/basic_hdrs.h
-Scheduled for removal  NEW_EDG/src/basics.h
-Scheduled for removal  NEW_EDG/src/c_gen_be.c
-Scheduled for removal  NEW_EDG/src/c_gen_be.h
-Scheduled for removal  NEW_EDG/src/cfe.c
-Scheduled for removal  NEW_EDG/src/class_decl.c
-Scheduled for removal  NEW_EDG/src/class_decl.h
-Scheduled for removal  NEW_EDG/src/cmd_line.c
-Scheduled for removal  NEW_EDG/src/cmd_line.h
-Scheduled for removal  NEW_EDG/src/const_ints.c
-Scheduled for removal  NEW_EDG/src/const_ints.h
-Scheduled for removal  NEW_EDG/src/cp_gen_be.c
-Scheduled for removal  NEW_EDG/src/cp_gen_be.h
-Scheduled for removal  NEW_EDG/src/debug.c
-Scheduled for removal  NEW_EDG/src/debug.h
-Scheduled for removal  NEW_EDG/src/decl_hdrs.h
-Scheduled for removal  NEW_EDG/src/decl_inits.c
-Scheduled for removal  NEW_EDG/src/decl_inits.h
-Scheduled for removal  NEW_EDG/src/decl_spec.c
-Scheduled for removal  NEW_EDG/src/decl_spec.h
-Scheduled for removal  NEW_EDG/src/declarator.c
-Scheduled for removal  NEW_EDG/src/declarator.h
-Scheduled for removal  NEW_EDG/src/decls.c
-Scheduled for removal  NEW_EDG/src/decls.h
-Scheduled for removal  NEW_EDG/src/def_arg.c
-Scheduled for removal  NEW_EDG/src/def_arg.h
-Scheduled for removal  NEW_EDG/src/defines.h.proto
-Scheduled for removal  NEW_EDG/src/defines.h.solaris
-Scheduled for removal  NEW_EDG/src/defines.h.win32
-Scheduled for removal  NEW_EDG/src/disambig.c
-Scheduled for removal  NEW_EDG/src/disambig.h
-Scheduled for removal  NEW_EDG/src/error.c
-Scheduled for removal  NEW_EDG/src/error.h
-Scheduled for removal  NEW_EDG/src/error_msg.txt
-Scheduled for removal  NEW_EDG/src/error_tag.txt
-Scheduled for removal  NEW_EDG/src/expr.c
-Scheduled for removal  NEW_EDG/src/expr.h
-Scheduled for removal  NEW_EDG/src/expr_hdrs.h
-Scheduled for removal  NEW_EDG/src/exprutil.c
-Scheduled for removal  NEW_EDG/src/exprutil.h
-Scheduled for removal  NEW_EDG/src/fe_common.h
-Scheduled for removal  NEW_EDG/src/fe_init.c
-Scheduled for removal  NEW_EDG/src/fe_init.h
-Scheduled for removal  NEW_EDG/src/fe_wrapup.c
-Scheduled for removal  NEW_EDG/src/fe_wrapup.h
-Scheduled for removal  NEW_EDG/src/float_pt.c
-Scheduled for removal  NEW_EDG/src/float_pt.h
-Scheduled for removal  NEW_EDG/src/folding.c
-Scheduled for removal  NEW_EDG/src/folding.h
-Scheduled for removal  NEW_EDG/src/func_def.c
-Scheduled for removal  NEW_EDG/src/func_def.h
-Scheduled for removal  NEW_EDG/src/host_envir.c
-Scheduled for removal  NEW_EDG/src/host_envir.h
-Scheduled for removal  NEW_EDG/src/host_util.h
-Scheduled for removal  NEW_EDG/src/il.c
-Scheduled for removal  NEW_EDG/src/il.h
-Scheduled for removal  NEW_EDG/src/il_alloc.c
-Scheduled for removal  NEW_EDG/src/il_alloc.h
-Scheduled for removal  NEW_EDG/src/il_def.h
-Scheduled for removal  NEW_EDG/src/il_display.c
-Scheduled for removal  NEW_EDG/src/il_display.h
-Scheduled for removal  NEW_EDG/src/il_file.h
-Scheduled for removal  NEW_EDG/src/il_read.c
-Scheduled for removal  NEW_EDG/src/il_read.h
-Scheduled for removal  NEW_EDG/src/il_to_str.c
-Scheduled for removal  NEW_EDG/src/il_to_str.h
-Scheduled for removal  NEW_EDG/src/il_walk.c
-Scheduled for removal  NEW_EDG/src/il_walk.h
-Scheduled for removal  NEW_EDG/src/il_write.c
-Scheduled for removal  NEW_EDG/src/il_write.h
-Scheduled for removal  NEW_EDG/src/inline.c
-Scheduled for removal  NEW_EDG/src/inline.h
-Scheduled for removal  NEW_EDG/src/lang_feat.h
-Scheduled for removal  NEW_EDG/src/layout.c
-Scheduled for removal  NEW_EDG/src/layout.h
-Scheduled for removal  NEW_EDG/src/lexical.c
-Scheduled for removal  NEW_EDG/src/lexical.h
-Scheduled for removal  NEW_EDG/src/lint.h
-Scheduled for removal  NEW_EDG/src/literals.c
-Scheduled for removal  NEW_EDG/src/literals.h
-Scheduled for removal  NEW_EDG/src/lookup.c
-Scheduled for removal  NEW_EDG/src/lookup.h
-Scheduled for removal  NEW_EDG/src/lower_eh.c
-Scheduled for removal  NEW_EDG/src/lower_eh.h
-Scheduled for removal  NEW_EDG/src/lower_hdrs.h
-Scheduled for removal  NEW_EDG/src/lower_il.c
-Scheduled for removal  NEW_EDG/src/lower_il.h
-Scheduled for removal  NEW_EDG/src/lower_init.c
-Scheduled for removal  NEW_EDG/src/lower_init.h
-Scheduled for removal  NEW_EDG/src/lower_name.c
-Scheduled for removal  NEW_EDG/src/lower_name.h
-Scheduled for removal  NEW_EDG/src/macro.c
-Scheduled for removal  NEW_EDG/src/macro.h
-Scheduled for removal  NEW_EDG/src/mem_manage.c
-Scheduled for removal  NEW_EDG/src/mem_manage.h
-Scheduled for removal  NEW_EDG/src/mem_tables.h
-Scheduled for removal  NEW_EDG/src/msinfo
-Scheduled for removal  NEW_EDG/src/overload.c
-Scheduled for removal  NEW_EDG/src/overload.h
-Scheduled for removal  NEW_EDG/src/pch.c
-Scheduled for removal  NEW_EDG/src/pch.h
-Scheduled for removal  NEW_EDG/src/pragma.c
-Scheduled for removal  NEW_EDG/src/pragma.h
-Scheduled for removal  NEW_EDG/src/preproc.c
-Scheduled for removal  NEW_EDG/src/preproc.h
-Scheduled for removal  NEW_EDG/src/scope_stk.c
-Scheduled for removal  NEW_EDG/src/scope_stk.h
-Scheduled for removal  NEW_EDG/src/src_seq.c
-Scheduled for removal  NEW_EDG/src/src_seq.h
-Scheduled for removal  NEW_EDG/src/statements.c
-Scheduled for removal  NEW_EDG/src/statements.h
-Scheduled for removal  NEW_EDG/src/symbol_ref.c
-Scheduled for removal  NEW_EDG/src/symbol_ref.h
-Scheduled for removal  NEW_EDG/src/symbol_tbl.c
-Scheduled for removal  NEW_EDG/src/symbol_tbl.h
-Scheduled for removal  NEW_EDG/src/sys_predef.c
-Scheduled for removal  NEW_EDG/src/sys_predef.h
-Scheduled for removal  NEW_EDG/src/targ_def.h
-Scheduled for removal  NEW_EDG/src/target.c
-Scheduled for removal  NEW_EDG/src/target.h
-Scheduled for removal  NEW_EDG/src/templates.c
-Scheduled for removal  NEW_EDG/src/templates.h
-Scheduled for removal  NEW_EDG/src/types.c
-Scheduled for removal  NEW_EDG/src/types.h
-Scheduled for removal  NEW_EDG/src/version.h
-Scheduled for removal  NEW_EDG/src/walk_entry.h
-Scheduled for removal  NEW_EDG/src/disp/Makefile
-Scheduled for removal  NEW_EDG/src/disp/Makefile.pcc
-Scheduled for removal  NEW_EDG/src/disp/c_gen_be.c
-Scheduled for removal  NEW_EDG/src/disp/cfe.c
-Scheduled for removal  NEW_EDG/src/disp/class_decl.c
-Scheduled for removal  NEW_EDG/src/disp/cmd_line.c
-Scheduled for removal  NEW_EDG/src/disp/const_ints.c
-Scheduled for removal  NEW_EDG/src/disp/cp_gen_be.c
-Scheduled for removal  NEW_EDG/src/disp/debug.c
-Scheduled for removal  NEW_EDG/src/disp/decl_inits.c
-Scheduled for removal  NEW_EDG/src/disp/decl_spec.c
-Scheduled for removal  NEW_EDG/src/disp/declarator.c
-Scheduled for removal  NEW_EDG/src/disp/decls.c
-Scheduled for removal  NEW_EDG/src/disp/def_arg.c
-Scheduled for removal  NEW_EDG/src/disp/disambig.c
-Scheduled for removal  NEW_EDG/src/disp/error.c
-Scheduled for removal  NEW_EDG/src/disp/expr.c
-Scheduled for removal  NEW_EDG/src/disp/exprutil.c
-Scheduled for removal  NEW_EDG/src/disp/fe_init.c
-Scheduled for removal  NEW_EDG/src/disp/fe_wrapup.c
-Scheduled for removal  NEW_EDG/src/disp/float_pt.c
-Scheduled for removal  NEW_EDG/src/disp/folding.c
-Scheduled for removal  NEW_EDG/src/disp/func_def.c
-Scheduled for removal  NEW_EDG/src/disp/host_envir.c
-Scheduled for removal  NEW_EDG/src/disp/il.c
-Scheduled for removal  NEW_EDG/src/disp/il_alloc.c
-Scheduled for removal  NEW_EDG/src/disp/il_display.c
-Scheduled for removal  NEW_EDG/src/disp/il_read.c
-Scheduled for removal  NEW_EDG/src/disp/il_to_str.c
-Scheduled for removal  NEW_EDG/src/disp/il_walk.c
-Scheduled for removal  NEW_EDG/src/disp/il_write.c
-Scheduled for removal  NEW_EDG/src/disp/inline.c
-Scheduled for removal  NEW_EDG/src/disp/layout.c
-Scheduled for removal  NEW_EDG/src/disp/lexical.c
-Scheduled for removal  NEW_EDG/src/disp/literals.c
-Scheduled for removal  NEW_EDG/src/disp/lookup.c
-Scheduled for removal  NEW_EDG/src/disp/lower_eh.c
-Scheduled for removal  NEW_EDG/src/disp/lower_il.c
-Scheduled for removal  NEW_EDG/src/disp/lower_init.c
-Scheduled for removal  NEW_EDG/src/disp/lower_name.c
-Scheduled for removal  NEW_EDG/src/disp/macro.c
-Scheduled for removal  NEW_EDG/src/disp/mem_manage.c
-Scheduled for removal  NEW_EDG/src/disp/overload.c
-Scheduled for removal  NEW_EDG/src/disp/pch.c
-Scheduled for removal  NEW_EDG/src/disp/pragma.c
-Scheduled for removal  NEW_EDG/src/disp/preproc.c
-Scheduled for removal  NEW_EDG/src/disp/scope_stk.c
-Scheduled for removal  NEW_EDG/src/disp/src_seq.c
-Scheduled for removal  NEW_EDG/src/disp/statements.c
-Scheduled for removal  NEW_EDG/src/disp/symbol_ref.c
-Scheduled for removal  NEW_EDG/src/disp/symbol_tbl.c
-Scheduled for removal  NEW_EDG/src/disp/sys_predef.c
-Scheduled for removal  NEW_EDG/src/disp/target.c
-Scheduled for removal  NEW_EDG/src/disp/templates.c
-Scheduled for removal  NEW_EDG/src/disp/types.c
-Scheduled for removal  NEW_EDG/util/Changes
-Scheduled for removal  NEW_EDG/util/Makefile
-Scheduled for removal  NEW_EDG/util/Makefile.pcc
-Scheduled for removal  NEW_EDG/util/decode.c
-Scheduled for removal  NEW_EDG/util/decode.h
-Scheduled for removal  NEW_EDG/util/edg_decode.c
-Scheduled for removal  NEW_EDG/util/edg_munch.c
-Scheduled for removal  NEW_EDG/util/edg_munch.h
-Scheduled for removal  NEW_EDG/util/edg_prelink.c
-Scheduled for removal  NEW_EDG/util/edg_prelink.h
-Scheduled for removal  NEW_EDG/util/getopt.h
-Scheduled for removal  PDF/Makefile.am
-Scheduled for removal  PDF/e_ansi.h
-Scheduled for removal  PDF/e_ebcdic.h
-Scheduled for removal  PDF/e_macroman.h
-Scheduled for removal  PDF/p_afm.c
-Scheduled for removal  PDF/p_annots.c
-Scheduled for removal  PDF/p_basic.c
-Scheduled for removal  PDF/p_ccitt.c
-Scheduled for removal  PDF/p_cid.h
-Scheduled for removal  PDF/p_color.c
-Scheduled for removal  PDF/p_config.h
-Scheduled for removal  PDF/p_draw.c
-Scheduled for removal  PDF/p_filter.c
-Scheduled for removal  PDF/p_font.c
-Scheduled for removal  PDF/p_font.h
-Scheduled for removal  PDF/p_gif.c
-Scheduled for removal  PDF/p_gstate.c
-Scheduled for removal  PDF/p_hyper.c
-Scheduled for removal  PDF/p_image.c
-Scheduled for removal  PDF/p_intern.h
-Scheduled for removal  PDF/p_jpeg.c
-Scheduled for removal  PDF/p_metrics.h
-Scheduled for removal  PDF/p_pfm.c
-Scheduled for removal  PDF/p_png.c
-Scheduled for removal  PDF/p_stream.c
-Scheduled for removal  PDF/p_text.c
-Scheduled for removal  PDF/p_tiff.c
-Scheduled for removal  PDF/p_util.c
-Scheduled for removal  PDF/pdflib.h
-Scheduled for removal  PDF/resource.h
-Scheduled for removal  PDF/testpdf.C
-Scheduled for removal  ProgramAnalysis/Makefile.am
-Scheduled for removal  ProgramAnalysis/CFG/CFG.h
-Scheduled for removal  ProgramAnalysis/CFG/CFGImpl.C
-Scheduled for removal  ProgramAnalysis/CFG/CFGImpl.h
-Scheduled for removal  ProgramAnalysis/CFG/CFGTest.C
-Scheduled for removal  ProgramAnalysis/CFG/CFG_OA.C
-Scheduled for removal  ProgramAnalysis/CFG/CFG_ROSE.C
-Scheduled for removal  ProgramAnalysis/CFG/Makefile.am
-Scheduled for removal  ProgramAnalysis/CFG/cfgtestfile.c
-Scheduled for removal  ProgramAnalysis/CallGraphAnalysis/Callgraph.C
-Scheduled for removal  ProgramAnalysis/CallGraphAnalysis/Callgraph.h
-Scheduled for removal  ProgramAnalysis/CallGraphAnalysis/Classhierarchy.C
-Scheduled for removal  ProgramAnalysis/CallGraphAnalysis/Classhierarchy.h
-Scheduled for removal  ProgramAnalysis/CallGraphAnalysis/callgraph_example.C
-Scheduled for removal  ProgramAnalysis/Interface/CPPAstInterface.C
-Scheduled for removal  ProgramAnalysis/Interface/CPPAstInterface.h
-Scheduled for removal  ProgramAnalysis/Interface/Makefile.am
-Scheduled for removal  ProgramAnalysis/Interface/StmtInfoAnal.C
-Scheduled for removal  ProgramAnalysis/Interface/StmtInfoAnal.h
-Scheduled for removal  ProgramAnalysis/OAWrap/Makefile.am
-Scheduled for removal  ProgramAnalysis/OAWrap/OAConfig.h
-Scheduled for removal  ProgramAnalysis/OAWrap/OAWrap.C
-Scheduled for removal  ProgramAnalysis/OAWrap/OAWrap.h
-Scheduled for removal  ProgramAnalysis/OAWrap/SAGE2OA.C
-Scheduled for removal  ProgramAnalysis/OAWrap/SAGE2OA.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/CFG.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/CFG.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/Makefile
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/OARIFG.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/OARIFG.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/RIFG.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/TarjanIntervals.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CFG/TarjanIntervals.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CallGraph/CallGraph.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CallGraph/CallGraph.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/CallGraph/Makefile
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Interface/IRInterface.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/DomTree.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/DomTree.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/Makefile
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/Phi.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/Phi.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/SSA.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/SSA/SSA.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/BaseGraph.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/BaseGraph.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/DGraph.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/DGraph.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Exception.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Graph.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Graph.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Iterator.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Makefile
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Tree.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/Tree.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/UnionFindUniverse.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/UnionFindUniverse.h
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/grtest.C
-Scheduled for removal  ProgramAnalysis/OpenAnalysis/Utils/trtest.C
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/DataFlowAnalysis.C
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/DataFlowAnalysis.h
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/DataFlowTest.C
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/DefUseChain.C
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/DefUseChain.h
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/Makefile.am
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/ReachingDefinition.C
-Scheduled for removal  ProgramAnalysis/dataflowAnalysis/ReachingDefinition.h
-Scheduled for removal  ProgramAnalysis/valuePropagation/Makefile.am
-Scheduled for removal  ProgramAnalysis/valuePropagation/ValueAnnot.C
-Scheduled for removal  ProgramAnalysis/valuePropagation/ValueAnnot.h
-Scheduled for removal  ProgramAnalysis/valuePropagation/ValuePropagate.C
-Scheduled for removal  ProgramAnalysis/valuePropagation/ValuePropagate.h
-Scheduled for removal  Projects/Makefile.am
-Scheduled for removal  Projects/DataBase/DatabaseGraph.h
-Scheduled for removal  Projects/DataBase/GlobalDatabaseConnection.C.in
-Scheduled for removal  Projects/DataBase/GlobalDatabaseConnection.h
-Scheduled for removal  Projects/DataBase/Makefile.am
-Scheduled for removal  Projects/DataBase/TableAccess.C
-Scheduled for removal  Projects/DataBase/TableAccess.h
-Scheduled for removal  Projects/DataBase/TableAccessMacros.h
-Scheduled for removal  Projects/DataBase/TableDefinitions.h
-Scheduled for removal  Projects/DataBase/check_database.C
-Scheduled for removal  Projects/DataBase/createTableAccessMacros.pl
-Scheduled for removal  Projects/DataBase/simplecallgraph_testprogram.C
-Scheduled for removal  Projects/DataBase/testDataBase.C
-Scheduled for removal  Projects/DataStructureGraphing/linkedListTestCode.C
-Scheduled for removal  Projects/HighLevelGrammars/AbstractionAttribute.C
-Scheduled for removal  Projects/HighLevelGrammars/AbstractionAttribute.h
-Scheduled for removal  Projects/HighLevelGrammars/ExampleUserCode.code
-Scheduled for removal  Projects/HighLevelGrammars/GeneratedAbstractionCode.code
-Scheduled for removal  Projects/HighLevelGrammars/GeneratedAbstractionRecognitionCode.code
-Scheduled for removal  Projects/HighLevelGrammars/GeneratedLibraryCode.code
-Scheduled for removal  Projects/HighLevelGrammars/Makefile.am
-Scheduled for removal  Projects/HighLevelGrammars/exampleTranslator.C
-Scheduled for removal  Projects/HighLevelGrammars/highLevelGrammarGenerator.C
-Scheduled for removal  Projects/HighLevelGrammars/nodeAndEdgeTypes.h
-Scheduled for removal  Projects/HighLevelGrammars/overloadedOperatorRepresentation.C
-Scheduled for removal  Projects/HighLevelGrammars/overloadedOperatorTestCode.C
-Scheduled for removal  Projects/HighLevelGrammars/simpleA++.h
-Scheduled for removal  Projects/HighLevelGrammars/testApp.C
-Scheduled for removal  Projects/HighLevelGrammars/testCode.C
-Scheduled for removal  Projects/arrayOptimization/ArrayAnnot.C
-Scheduled for removal  Projects/arrayOptimization/ArrayAnnot.h
-Scheduled for removal  Projects/arrayOptimization/ArrayInterface.C
-Scheduled for removal  Projects/arrayOptimization/ArrayInterface.h
-Scheduled for removal  Projects/arrayOptimization/ArrayProcessor.C
-Scheduled for removal  Projects/arrayOptimization/ArrayRewrite.C
-Scheduled for removal  Projects/arrayOptimization/ArrayRewrite.h
-Scheduled for removal  Projects/arrayOptimization/Makefile.am
-Scheduled for removal  QueryLibs/Makefile.am
-Scheduled for removal  QueryLibs/QueryLib.docs
-Scheduled for removal  QueryLibs/roseQueryLib.h
-Scheduled for removal  QueryLibs/BooleanQuery/Makefile.am
-Scheduled for removal  QueryLibs/BooleanQuery/booleanQuery.C
-Scheduled for removal  QueryLibs/BooleanQuery/booleanQuery.h
-Scheduled for removal  QueryLibs/BooleanQuery/booleanQueryInheritedAttribute.C
-Scheduled for removal  QueryLibs/BooleanQuery/booleanQueryInheritedAttribute.h
-Scheduled for removal  QueryLibs/NameQuery/Makefile.am
-Scheduled for removal  QueryLibs/NameQuery/nameQuery.C
-Scheduled for removal  QueryLibs/NameQuery/nameQuery.h
-Scheduled for removal  QueryLibs/NameQuery/nameQueryInheritedAttribute.C
-Scheduled for removal  QueryLibs/NameQuery/nameQueryInheritedAttribute.h
-Scheduled for removal  QueryLibs/NodeQuery/Makefile.am
-Scheduled for removal  QueryLibs/NodeQuery/nodeQuery.C
-Scheduled for removal  QueryLibs/NodeQuery/nodeQuery.h
-Scheduled for removal  QueryLibs/NodeQuery/nodeQueryInheritedAttribute.C
-Scheduled for removal  QueryLibs/NodeQuery/nodeQueryInheritedAttribute.h
-Scheduled for removal  QueryLibs/NumberQuery/Makefile.am
-Scheduled for removal  QueryLibs/NumberQuery/numberQuery.C
-Scheduled for removal  QueryLibs/NumberQuery/numberQuery.h
-Scheduled for removal  QueryLibs/NumberQuery/numberQueryInheritedAttribute.C
-Scheduled for removal  QueryLibs/NumberQuery/numberQueryInheritedAttribute.h
-Scheduled for removal  ROSETTA/.pure
-Scheduled for removal  ROSETTA/ArrayGrammar.cfg
-Scheduled for removal  ROSETTA/Constraints.txt
-Scheduled for removal  ROSETTA/How_To_Build_A_Preprocessor.txt
-Scheduled for removal  ROSETTA/Makefile.am
-Scheduled for removal  ROSETTA/ROSE_ArrayGrammar.C
-Scheduled for removal  ROSETTA/ROSE_ArrayGrammar.h
-Scheduled for removal  ROSETTA/ROSE_CxxGrammar.cfg
-Scheduled for removal  ROSETTA/ROSE_Node.h
-Scheduled for removal  ROSETTA/TO_DO.txt
-Scheduled for removal  ROSETTA/array.C.removeTerminalExample
-Scheduled for removal  ROSETTA/array.C.two_grammars
-Scheduled for removal  ROSETTA/debugMacros.h
-Scheduled for removal  ROSETTA/rosetta.cfg
-Scheduled for removal  ROSETTA/transformationDesign.txt
-Scheduled for removal  ROSETTA/treeTraversal.txt
-Scheduled for removal  ROSETTA/Grammar/Common.code
-Scheduled for removal  ROSETTA/Grammar/Cxx_GlobalDeclarations.macro
-Scheduled for removal  ROSETTA/Grammar/Cxx_Support_Header.macro
-Scheduled for removal  ROSETTA/Grammar/Expression.code
-Scheduled for removal  ROSETTA/Grammar/LocatedNode.code
-Scheduled for removal  ROSETTA/Grammar/Node.code
-Scheduled for removal  ROSETTA/Grammar/README
-Scheduled for removal  ROSETTA/Grammar/Statement.code
-Scheduled for removal  ROSETTA/Grammar/Support.code
-Scheduled for removal  ROSETTA/Grammar/Symbol.code
-Scheduled for removal  ROSETTA/Grammar/Type.code
-Scheduled for removal  ROSETTA/Grammar/copyMemberFunction.macro
-Scheduled for removal  ROSETTA/Grammar/dataMemberAccessFunctions.macro
-Scheduled for removal  ROSETTA/Grammar/grammarClassDeclatationMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarClassDefinitionMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarConstructorDefinitionMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarDestructorDefinitionMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarIsClassNameFunctionDefinitionMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarMainClassDeclatationMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarMainClassParseFunctionSourceCode.macro
-Scheduled for removal  ROSETTA/Grammar/grammarMainClassSourceCodeMacros.macro
-Scheduled for removal  ROSETTA/Grammar/grammarVariantFunctionDefinitionMacros.macro
-Scheduled for removal  ROSETTA/Grammar/node.macro
-Scheduled for removal  ROSETTA/Grammar/parserCode.macro
-Scheduled for removal  ROSETTA/Grammar/parserPrototype.macro
-Scheduled for removal  ROSETTA/Grammar/parserSourceCode.macro
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayExpression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayFunctionExpression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayOperandExpression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayOperator.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayParenthesisOperator.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ArrayVariableExpression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_BinaryArrayOperator.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_BinaryArrayOperatorAdd.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_BinaryArrayOperatorEquals.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_BinaryArrayOperatorMultiply.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_C_Expression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_C_Statement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ElseWhereStatement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_Expression.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ExpressionStatement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_ForStatement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_IfStatement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_Node.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_Statement.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_StatementBlock.code
-Scheduled for removal  ROSETTA/simpleGrammar/ROSE_WhereStatement.code
-Scheduled for removal  ROSETTA/src/CxxGrammarMetaProgram.C
-Scheduled for removal  ROSETTA/src/Makefile.am
-Scheduled for removal  ROSETTA/src/ROSETTA_macros.h
-Scheduled for removal  ROSETTA/src/addNonTerminal.C
-Scheduled for removal  ROSETTA/src/addTerminal.C
-Scheduled for removal  ROSETTA/src/constraint.C
-Scheduled for removal  ROSETTA/src/constraint.h
-Scheduled for removal  ROSETTA/src/constraintList.C
-Scheduled for removal  ROSETTA/src/constraintList.h
-Scheduled for removal  ROSETTA/src/expression.C
-Scheduled for removal  ROSETTA/src/grammar.C
-Scheduled for removal  ROSETTA/src/grammar.h
-Scheduled for removal  ROSETTA/src/grammarString.C
-Scheduled for removal  ROSETTA/src/grammarString.h
-Scheduled for removal  ROSETTA/src/grammarTreeNode.C
-Scheduled for removal  ROSETTA/src/grammarTreeNode.h
-Scheduled for removal  ROSETTA/src/node.C
-Scheduled for removal  ROSETTA/src/nonTerminalList.C
-Scheduled for removal  ROSETTA/src/nonterminal.C
-Scheduled for removal  ROSETTA/src/nonterminal.h
-Scheduled for removal  ROSETTA/src/statement.C
-Scheduled for removal  ROSETTA/src/support.C
-Scheduled for removal  ROSETTA/src/symbol.C
-Scheduled for removal  ROSETTA/src/terminal.C
-Scheduled for removal  ROSETTA/src/terminal.h
-Scheduled for removal  ROSETTA/src/terminalList.C
-Scheduled for removal  ROSETTA/src/terminalList.h
-Scheduled for removal  ROSETTA/src/type.C
-Scheduled for removal  ROSETTA_EXAMPLES/Makefile.am
-Scheduled for removal  ROSETTA_EXAMPLES/MetaProgramExample.C
-Scheduled for removal  ROSETTA_EXAMPLES/ArrayASTRestructuringTool/ArrayGrammarMetaProgram.C
-Scheduled for removal  ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
-Scheduled for removal  ROSETTA_EXAMPLES/ArrayASTRestructuringTool/littleA++.h
-Scheduled for removal  ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/CxxGrammarMetaProgram.C
-Scheduled for removal  ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/Makefile.am
-Scheduled for removal  ROSE_TEST/Makefile
-Scheduled for removal  ROSE_TEST/defalloc.h
-Scheduled for removal  ROSE_TEST/list.h
-Scheduled for removal  ROSE_TEST/mg.C
-Scheduled for removal  ROSE_TEST/mg.h
-Scheduled for removal  ROSE_TEST/mg.int.c
-Scheduled for removal  ROSE_TEST/mg1level.C
-Scheduled for removal  ROSE_TEST/mg1level.h
-Scheduled for removal  ROSE_TEST/mg1level.int.c
-Scheduled for removal  ROSE_TEST/mg_main.C
-Scheduled for removal  ROSE_TEST/mg_main.h
-Scheduled for removal  ROSE_TEST/mg_main.int.c
-Scheduled for removal  ROSE_TEST/pde.C
-Scheduled for removal  ROSE_TEST/pde.h
-Scheduled for removal  ROSE_TEST/pde.int.c
-Scheduled for removal  ROSE_TEST/redo_tests
-Scheduled for removal  ROSE_TEST/riemann.C
-Scheduled for removal  ROSE_TEST/riemann.int.c
-Scheduled for removal  ROSE_TEST/roseTransformationProgramTree.show
-Scheduled for removal  ROSE_TEST/rose_mg.C
-Scheduled for removal  ROSE_TEST/rose_mg1level.C
-Scheduled for removal  ROSE_TEST/rose_mg_main.C
-Scheduled for removal  ROSE_TEST/rose_mg_main.h
-Scheduled for removal  ROSE_TEST/rose_pde.C
-Scheduled for removal  ROSE_TEST/rose_riemann.C
-Scheduled for removal  ROSE_TEST/rose_riemann.int.c
-Scheduled for removal  ROSE_TEST/rose_testcode.C
-Scheduled for removal  ROSE_TEST/rose_testppp.C
-Scheduled for removal  ROSE_TEST/run_A++tests
-Scheduled for removal  ROSE_TEST/simple.C
-Scheduled for removal  ROSE_TEST/simple_prime.C
-Scheduled for removal  ROSE_TEST/simple_prime.h
-Scheduled for removal  ROSE_TEST/templates.C
-Scheduled for removal  ROSE_TEST/templates2.C
-Scheduled for removal  ROSE_TEST/templates_prime.C
-Scheduled for removal  ROSE_TEST/templates_prime.h
-Scheduled for removal  ROSE_TEST/templates_prime_main.C
-Scheduled for removal  ROSE_TEST/templates_stl.C
-Scheduled for removal  ROSE_TEST/templates_test_main.C
-Scheduled for removal  ROSE_TEST/templates_tlist.C
-Scheduled for removal  ROSE_TEST/testcode.C
-Scheduled for removal  ROSE_TEST/testcode.int.c
-Scheduled for removal  ROSE_TEST/testppp.C
-Scheduled for removal  ROSE_TEST/testppp.int.c
-Scheduled for removal  ROSE_TEST/tlist.C
-Scheduled for removal  ROSE_TEST/tlist.h
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test01.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test02.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test03.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test04.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test05.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test06.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test07.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/rose_test08.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script01
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script02
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script03
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script04
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script05
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script06
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script07
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/run_script08
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test01.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test02.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test03.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test04.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test05.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test06.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test07.C
-Scheduled for removal  ROSE_TEST/PREINIT_TEST/test08.C
-Scheduled for removal  ROSE_TEST/STL_TEST/_new.h
-Scheduled for removal  ROSE_TEST/STL_TEST/algo.h
-Scheduled for removal  ROSE_TEST/STL_TEST/algobase.h
-Scheduled for removal  ROSE_TEST/STL_TEST/bool.h
-Scheduled for removal  ROSE_TEST/STL_TEST/bvector.h
-Scheduled for removal  ROSE_TEST/STL_TEST/defalloc.h
-Scheduled for removal  ROSE_TEST/STL_TEST/deque.h
-Scheduled for removal  ROSE_TEST/STL_TEST/faralloc.h
-Scheduled for removal  ROSE_TEST/STL_TEST/fdeque.h
-Scheduled for removal  ROSE_TEST/STL_TEST/flist.h
-Scheduled for removal  ROSE_TEST/STL_TEST/fmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/fmultmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/fmultset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/fset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/function.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hdeque.h
-Scheduled for removal  ROSE_TEST/STL_TEST/heap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hlist.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hmultmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hmultset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hugalloc.h
-Scheduled for removal  ROSE_TEST/STL_TEST/hvector.h
-Scheduled for removal  ROSE_TEST/STL_TEST/iterator.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lbvector.h
-Scheduled for removal  ROSE_TEST/STL_TEST/ldeque.h
-Scheduled for removal  ROSE_TEST/STL_TEST/list.h
-Scheduled for removal  ROSE_TEST/STL_TEST/llist.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lmultmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lmultset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lngalloc.h
-Scheduled for removal  ROSE_TEST/STL_TEST/lset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/map.h
-Scheduled for removal  ROSE_TEST/STL_TEST/multimap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/multiset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/neralloc.h
-Scheduled for removal  ROSE_TEST/STL_TEST/nmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/nmultmap.h
-Scheduled for removal  ROSE_TEST/STL_TEST/nmultset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/nset.h
-Scheduled for removal  ROSE_TEST/STL_TEST/pair.h
-Scheduled for removal  ROSE_TEST/STL_TEST/projectn.h
-Scheduled for removal  ROSE_TEST/STL_TEST/random.cpp
-Scheduled for removal  ROSE_TEST/STL_TEST/run_script
-Scheduled for removal  ROSE_TEST/STL_TEST/set.h
-Scheduled for removal  ROSE_TEST/STL_TEST/stack.h
-Scheduled for removal  ROSE_TEST/STL_TEST/tempbuf.h
-Scheduled for removal  ROSE_TEST/STL_TEST/templates_stl.C
-Scheduled for removal  ROSE_TEST/STL_TEST/tree.h
-Scheduled for removal  ROSE_TEST/STL_TEST/vector.h
-Scheduled for removal  SAGE/AstFixes.C
-Scheduled for removal  SAGE/AstFixes.h
-Scheduled for removal  SAGE/C++_include_files.h
-Scheduled for removal  SAGE/Makefile.am
-Scheduled for removal  SAGE/attachPreprocessingInfo.C
-Scheduled for removal  SAGE/attachPreprocessingInfo.h
-Scheduled for removal  SAGE/generateAST.C
-Scheduled for removal  SAGE/grammarBaseClass.C
-Scheduled for removal  SAGE/grammarBaseClass.h
-Scheduled for removal  SAGE/insert.C
-Scheduled for removal  SAGE/rose_attributes_list.C
-Scheduled for removal  SAGE/rose_attributes_list.h
-Scheduled for removal  SAGE/sage.docs.in
-Scheduled for removal  SAGE/sage3.h
-Scheduled for removal  SAGE/sageClasses.docs
-Scheduled for removal  SAGE/sla.h
-Scheduled for removal  SAGE/stripWrapper.C
-Scheduled for removal  SCRIPTS/README
-Scheduled for removal  SCRIPTS/README.petfsummary
-Scheduled for removal  SCRIPTS/check-dist-file
-Scheduled for removal  SCRIPTS/configure_with_SQL
-Scheduled for removal  SCRIPTS/cvschk
-Scheduled for removal  SCRIPTS/dotgen
-Scheduled for removal  SCRIPTS/dotgen2
-Scheduled for removal  SCRIPTS/dotgenLetter
-Scheduled for removal  SCRIPTS/find_cvs_conflicts
-Scheduled for removal  SCRIPTS/generateDirectoryGraph
-Scheduled for removal  SCRIPTS/lsdot
-Scheduled for removal  SCRIPTS/petf_summary.pl
-Scheduled for removal  SCRIPTS/printConstructors
-Scheduled for removal  SCRIPTS/rcdf-config
-Scheduled for removal  SCRIPTS/remote-check-dist-file
-Scheduled for removal  SCRIPTS/runscript
-Scheduled for removal  SCRIPTS/sla.pl
-Scheduled for removal  SCRIPTS/sla.sh
-Scheduled for removal  SCRIPTS/sla.tcl
-Scheduled for removal  SCRIPTS/standard-remote-check-dist-file
-Scheduled for removal  TESTS/Makefile.am
-Scheduled for removal  TESTS/README
-Scheduled for removal  TESTS/testTranslator.C
-Scheduled for removal  TESTS/CompileTests/Makefile.am
-Scheduled for removal  TESTS/CompileTests/README
-Scheduled for removal  TESTS/CompileTests/A++Code/A++.h
-Scheduled for removal  TESTS/CompileTests/A++Code/A++_headers.h
-Scheduled for removal  TESTS/CompileTests/A++Code/A++_notemplates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/A++_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/Makefile.am
-Scheduled for removal  TESTS/CompileTests/A++Code/abstract_op.C
-Scheduled for removal  TESTS/CompileTests/A++Code/array_domain.h
-Scheduled for removal  TESTS/CompileTests/A++Code/array_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Code/comm_man.C
-Scheduled for removal  TESTS/CompileTests/A++Code/comm_man.h
-Scheduled for removal  TESTS/CompileTests/A++Code/config.h
-Scheduled for removal  TESTS/CompileTests/A++Code/constants.h
-Scheduled for removal  TESTS/CompileTests/A++Code/d_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Code/data_hash.C
-Scheduled for removal  TESTS/CompileTests/A++Code/data_hash.h
-Scheduled for removal  TESTS/CompileTests/A++Code/descriptor.h
-Scheduled for removal  TESTS/CompileTests/A++Code/descriptor_cache.C
-Scheduled for removal  TESTS/CompileTests/A++Code/descriptor_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Code/descriptor_notemplates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/descriptor_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/dimension_macros.h
-Scheduled for removal  TESTS/CompileTests/A++Code/domain.C
-Scheduled for removal  TESTS/CompileTests/A++Code/domain.h
-Scheduled for removal  TESTS/CompileTests/A++Code/error_checking.C
-Scheduled for removal  TESTS/CompileTests/A++Code/expression_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/f_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Code/i_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Code/index.C
-Scheduled for removal  TESTS/CompileTests/A++Code/index.h
-Scheduled for removal  TESTS/CompileTests/A++Code/index_operator_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Code/inline_expression_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Code/inline_func.h
-Scheduled for removal  TESTS/CompileTests/A++Code/inline_support.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_aggregate.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_aggregate.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_expression.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_expression.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_operand.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_operand.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_statement.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_statement.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_task.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_task.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_taskset.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazy_taskset.h
-Scheduled for removal  TESTS/CompileTests/A++Code/lazyarray.C
-Scheduled for removal  TESTS/CompileTests/A++Code/lazyarray.h
-Scheduled for removal  TESTS/CompileTests/A++Code/machine.h
-Scheduled for removal  TESTS/CompileTests/A++Code/max_array_dim.h
-Scheduled for removal  TESTS/CompileTests/A++Code/mdi_typedef.h
-Scheduled for removal  TESTS/CompileTests/A++Code/new_operators_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Code/optimization.C
-Scheduled for removal  TESTS/CompileTests/A++Code/optimization.h
-Scheduled for removal  TESTS/CompileTests/A++Code/partitioning.C
-Scheduled for removal  TESTS/CompileTests/A++Code/partitioning.h
-Scheduled for removal  TESTS/CompileTests/A++Code/rose_abstract_op.C
-Scheduled for removal  TESTS/CompileTests/A++Code/rose_domain.C
-Scheduled for removal  TESTS/CompileTests/A++Code/static_initialization.C
-Scheduled for removal  TESTS/CompileTests/A++Code/test_bool.C
-Scheduled for removal  TESTS/CompileTests/A++Code/where.C
-Scheduled for removal  TESTS/CompileTests/A++Code/where.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/A++.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/A++_headers.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/A++_notemplates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/A++_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/Makefile.am
-Scheduled for removal  TESTS/CompileTests/A++Tests/abstract_op.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/array_domain.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/array_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/comm_man.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/comm_man.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/config.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/constants.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/d_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/data_hash.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/data_hash.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/descriptor.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/descriptor_cache.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/descriptor_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/descriptor_notemplates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/descriptor_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/dimension_macros.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/domain.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/domain.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/error_checking.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/expression_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/f_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/i_op_all.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/index.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/index.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/index_operator_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/inline_expression_templates.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/inline_func.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/inline_support.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_aggregate.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_aggregate.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_expression.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_expression.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_operand.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_operand.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_statement.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_statement.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_task.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_task.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_taskset.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazy_taskset.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazyarray.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/lazyarray.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/machine.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/max_array_dim.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/mdi_typedef.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/new_operators_notemplates.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/optimization.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/optimization.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/partitioning.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/partitioning.h
-Scheduled for removal  TESTS/CompileTests/A++Tests/rose_abstract_op.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/rose_domain.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/static_initialization.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/test1.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/test2001_11.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/where.C
-Scheduled for removal  TESTS/CompileTests/A++Tests/where.h
-Scheduled for removal  TESTS/CompileTests/C++Code/A++Test.C
-Scheduled for removal  TESTS/CompileTests/C++Code/AndreasTranslator.C
-Scheduled for removal  TESTS/CompileTests/C++Code/Makefile.am
-Scheduled for removal  TESTS/CompileTests/C++Code/README
-Scheduled for removal  TESTS/CompileTests/C++Code/astAttributeTest.C
-Scheduled for removal  TESTS/CompileTests/C++Code/commandlineProcessor.C
-Scheduled for removal  TESTS/CompileTests/C++Code/confdefs.h
-Scheduled for removal  TESTS/CompileTests/C++Code/conftest.C
-Scheduled for removal  TESTS/CompileTests/C++Code/fileFilter.C
-Scheduled for removal  TESTS/CompileTests/C++Code/interp.C
-Scheduled for removal  TESTS/CompileTests/C++Code/lexPhase2003_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/lexPhase2003_02.C
-Scheduled for removal  TESTS/CompileTests/C++Code/markus_typedef_error.C
-Scheduled for removal  TESTS/CompileTests/C++Code/preprocessor.C
-Scheduled for removal  TESTS/CompileTests/C++Code/redblack.C
-Scheduled for removal  TESTS/CompileTests/C++Code/riemann.C
-Scheduled for removal  TESTS/CompileTests/C++Code/rose_interp.C
-Scheduled for removal  TESTS/CompileTests/C++Code/rose_test2004_20.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_02.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_03.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_04.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_05.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_05.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_06.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_07.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_08.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_09.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_10.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_11.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_12.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_13.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_14.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_15.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_15.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_16.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_17.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_18.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_18A.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_18B.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_19.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_20.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_21.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_22.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_23.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_24.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_25.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_26.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_27.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_28.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2001_29.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2002_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_02.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_03.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_04.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_05.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_06.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_07.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_08.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_08.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_09.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_10.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_11.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_12.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_13.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_14.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_15.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_16.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_17.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_18.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_19.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_20.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_21.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_22.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_23.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_24.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_25.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_26.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_27.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_28.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_29.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_30.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_31.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_32.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_33.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_34.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_35.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_36.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_37.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2003_38.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_02.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_03.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_04.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_05.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_06.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_07.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_08.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_09.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_10.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_11.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_12.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_13.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_14.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_15.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_16.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_17.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_18.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_19.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_20.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_22.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_23.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_24.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_25.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_26.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_27.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_28.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_29.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_30.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_31.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_32.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_33.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_34.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_35.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_36.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_37.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_38.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_39.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_40.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_40.h
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_41.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_42.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_43.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_44.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test2004_45.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testAnsi.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testAstAttributes_testFile.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testFileFilter.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testNotEqualBut.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testQueryLib.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testQueryLib_testFile.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testTemplateSpecialization.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testTemplateSpecializationSupport.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testTemplates.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test_new_edg.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test_noname.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test_treeTrav_MK_01.C
-Scheduled for removal  TESTS/CompileTests/C++Code/test_treeTrav_MK_02.C
-Scheduled for removal  TESTS/CompileTests/C++Code/testcode.C
-Scheduled for removal  TESTS/CompileTests/C++Code/typedefExamples.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AbstractException.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AdvancingFront.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AdvancingFrontParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AirfoilMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AliasedDPtr.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AliasedDPtr.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Annulus.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Arena.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ArithFab.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ArithFab.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Array.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Array.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ArrayLim.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Assert.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/AssertException.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BArena.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BCTypes.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BLVERSION.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BaseFab.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BaseFab.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BodyDefinition.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Boolean.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Bound.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoundaryAdjustment.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoundaryConditionParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoundingBox.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Box.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxArray.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxAssoc.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxDomain.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxLib.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxList.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/BoxMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CONSTANTS.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CircleMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ComposeMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeGridFiniteVolumeOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeGridHybridConnectivity.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeSurface.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CompositeTopology.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CrossSectionMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/CylinderMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DPtr.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DPtr.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DataBaseAccessFunctions.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DataBaseBuffer.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DataFormats.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DataPointMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DepthMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DerivedFunctions.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DialogData.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Display.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DisplayParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/DynamicMovingGrids.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/EllipticGridGenerator.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/EllipticTransform.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/EquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/EquiDistribute.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ErrorEstimator.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FArrayBox.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FPC.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FabArray.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FabArray.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FabConv.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Face.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Face_inline.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FilamentMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FileOutput.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FilletMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FortranIO.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/FourierOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Fraction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GCMath.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GL_GraphicsInterface.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GUIState.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericCollectionOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericCompositeGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericDataBase.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGraphicsInterface.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridCollection.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridCollectionOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridMotion.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericGridMotionParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GenericMappedGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Geom.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GeomADTTuple3dInt.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Geom_inline.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GeometricADT.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GeometricADT3dInt.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GeometricADTExceptions.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GraphicsParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridCollection.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridCollectionFiniteVolumeOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridCollectionOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/GridFunctionParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/HDF_DataBase.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/HarwellEquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/HyperbolicMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/IgesReader.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/IndexArg.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/IndexType.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/IntVect.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Integrate.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Interpolant.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Interpolate.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/InterpolateParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/InterpolateRefinements.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/IntersectionMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Inverse.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/JoinMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/LineMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/List.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/List.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfBoundingBox.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfCompositeGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfCompositeGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleDistributedArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfDoubleSerialArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatDistributedArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfFloatSerialArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGenericCompositeGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGenericGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGenericGridCollection.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGenericGridCollectionOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGenericMappedGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfGridCollection.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfHDF_DataBaseRCData.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntDistributedArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntSerialArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfIntegerArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfListOfDoubleArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfListOfFloatArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfListOfIntArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfListOfRealArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfMappedGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfMappedGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfMappingRC.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfRealArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfReferenceCountedObjects.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ListOfReferenceCountedObjects.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Looping.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Makefile.am
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Makefile.overture
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappedGrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappedGridFiniteVolumeOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappedGridOperators.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappedGridOperatorsInclude.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Mapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingBuilder.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingEnums.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingInformation.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingP.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingProjectionParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingRC.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingWS.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MappingsFromCAD.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MatrixMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MatrixTransform.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MatrixTransformGridMotion.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MatrixTransformGridMotionParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MatrixTransformMotionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Misc.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MultiFab.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/MultigridEquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NTreeNode.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NTreeNode2GeomADTTuple3dInt.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NTreeNodeExceptions.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NameList.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NormalMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NormedFab.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NormedFab.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/NurbsMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OGFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OGPolyFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OGPulseFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OGTrigFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OGgetIndex.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OVFortranDefine.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OVFortranDefine.h.in
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OffsetShell.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Ogen.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Oges.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OgesEnums.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OgesParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Ogmg.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OgmgParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Ogshow.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OrderedFab.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OrderedFab.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Orientation.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OrthographicTransform.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Overture.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OvertureBL.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OvertureDefine.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OvertureDefine.h.in
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OvertureInit.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/OvertureTypes.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PArray.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PArray.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PETScEquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ParallelUtility.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ParmParse.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PlaneMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PlotStuff.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PlotStuffParameters.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Pointers.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Pointers.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/PriorityQueue.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Projection.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/QuadTree.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/QuadraticMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/REAL.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ReductionMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ReferenceCounting.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ReferenceCountingList.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Regrid.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ReparameterizationTransform.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/RestrictionMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/RevolutionMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/RocketMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SPACE.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SPACE_F.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ShowFileReader.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SimpleDPtr.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SimpleDPtr.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SlapEquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SmoothedPolygon.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SparseRep.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Sphere.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SplineMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Square.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SquareMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Stencil.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/StretchMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/StretchTransform.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/StretchedSquare.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/SweepMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TFIMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Triangle.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TriangleWrapper.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TridiagonalSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TrimmedMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TrivialArray.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Tuple.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Tuple.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/TwilightZoneWizard.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Ugen.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/UnstructuredMapping.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/UseCount.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/Utility.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/YaleEquationSolver.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/aString.H
-Scheduled for removal  TESTS/CompileTests/OvertureCode/axisDefs.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/billsMergeMacro.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/cgux2a.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/cgux4a.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/conversion.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/davidsReal.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/defect.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/depend
-Scheduled for removal  TESTS/CompileTests/OvertureCode/depend.bak
-Scheduled for removal  TESTS/CompileTests/OvertureCode/derivativeDefinitions.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/display.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/doubleCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/doubleGenericGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/doubleGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/doubleGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/doubleMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/floatCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/floatGenericGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/floatGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/floatGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/floatMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/intCompositeGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/intGenericGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/intGenericGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/intGridCollectionFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/intMappedGridFunction.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/interpolatePoints.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/laplacian.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/loops.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/makeDebugPlots.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/mathutil.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/mogl.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/overtureBug_01.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/ply.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/plyFileInterface.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/testUtils.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/tlist.C
-Scheduled for removal  TESTS/CompileTests/OvertureCode/tlist.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/triangle.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/wdhdefs.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/xD.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/xDC.h
-Scheduled for removal  TESTS/CompileTests/OvertureCode/xFDerivative.C
-Scheduled for removal  TESTS/CompileTests/P++Tests/A++.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/A++_headers.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/List.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/Makefile.am
-Scheduled for removal  TESTS/CompileTests/P++Tests/P++.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/P++_config.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/P++_headers.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/Parti_config.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/array_domain.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/arraylist.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/bsparti.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/comm_man.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/conform_array_set.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/conform_enforce.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/constants.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/data_hash.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/descriptor.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/dimension_macros.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/domain.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/gs-c.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/hash.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/helper.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/index.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/indirect_addressing.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/inline_func.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/inline_support.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_aggregate.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_expression.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_operand.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_statement.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_task.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazy_taskset.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/lazyarray.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/machine.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/max_array_dim.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/mdi_typedef.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/mpi-port.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/optimization.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_data_hash.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_descriptor.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_domain.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_inline_func.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_inline_support.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_lazy_aggregate.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_lazy_operand.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/p_lazyarray.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/partitioning.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/partlist.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/pgshash.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/pgslib-include-c.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/pgslib-names.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/pgslib-types.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/port.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/print.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/send-rcv.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/test2001_01.C
-Scheduled for removal  TESTS/CompileTests/P++Tests/utility-c.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/utils.h
-Scheduled for removal  TESTS/CompileTests/P++Tests/where.h
-Scheduled for removal  TESTS/CompilerOptionsTests/Makefile.am
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/A++.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/A++_headers.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/A++_notemplates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/A++_templates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/Makefile.am
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/abstract_op.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/array_domain.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/array_notemplates.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/comm_man.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/comm_man.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/config.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/constants.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/d_op_all.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/data_hash.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/data_hash.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/descriptor.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/descriptor_cache.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/descriptor_notemplates.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/descriptor_notemplates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/descriptor_templates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/dimension_macros.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/domain.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/domain.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/error_checking.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/expression_templates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/f_op_all.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/findNullBlockInEDG.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/i_op_all.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/index.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/index.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/index_operator_notemplates.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/inline_expression_templates.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/inline_func.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/inline_support.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_aggregate.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_aggregate.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_expression.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_expression.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_operand.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_operand.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_statement.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_statement.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_task.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_task.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_taskset.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazy_taskset.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazyarray.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/lazyarray.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/machine.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/max_array_dim.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/mdi_typedef.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/new_operators_notemplates.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/optimization.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/optimization.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/partitioning.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/partitioning.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/rose_abstract_op.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/rose_domain.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/static_initialization.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/test.h
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/testUnparser.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/test_bool.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/where.C
-Scheduled for removal  TESTS/CompilerOptionsTests/A++Code/where.h
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_01.C
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_01.h
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_02.C
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_02.h
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_03.C
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_03.h
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_04.C
-Scheduled for removal  TESTS/KnownBugs/AttachPreprocessingInfo/mkTest_04.h
-Scheduled for removal  TESTS/PerformanceTests/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/A++Tests/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/A++Tests/performanceTest.C
-Scheduled for removal  TESTS/PerformanceTests/A++Tests/test_01.C
-Scheduled for removal  TESTS/PerformanceTests/A++Tests/test_01.h
-Scheduled for removal  TESTS/PerformanceTests/P++Tests/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/P++Tests/performanceTest.C
-Scheduled for removal  TESTS/PerformanceTests/P++Tests/test_01.C
-Scheduled for removal  TESTS/PerformanceTests/P++Tests/test_01.h
-Scheduled for removal  TESTS/PortabilityTests/Insure/Makefile
-Scheduled for removal  TESTS/PortabilityTests/Insure/test_Insure.C
-Scheduled for removal  TESTS/PortabilityTests/KCC-3.4g/Makefile
-Scheduled for removal  TESTS/PortabilityTests/KCC-3.4g/test_KCC.c
-Scheduled for removal  TESTS/PortabilityTests/KCC-3.4g/test_dbx.C
-Scheduled for removal  TESTS/PortabilityTests/KCC-3.4g/test_file1_KCC.c
-Scheduled for removal  TESTS/PortabilityTests/KCC-3.4g/test_file2_KCC.C
-Scheduled for removal  TESTS/RunTests/Makefile.am
-Scheduled for removal  TESTS/RunTests/A++Tests/A++.h
-Scheduled for removal  TESTS/RunTests/A++Tests/A++_headers.h
-Scheduled for removal  TESTS/RunTests/A++Tests/A++_notemplates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/A++_templates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/Makefile.am
-Scheduled for removal  TESTS/RunTests/A++Tests/abstract_op.C
-Scheduled for removal  TESTS/RunTests/A++Tests/array_domain.h
-Scheduled for removal  TESTS/RunTests/A++Tests/array_notemplates.C
-Scheduled for removal  TESTS/RunTests/A++Tests/comm_man.C
-Scheduled for removal  TESTS/RunTests/A++Tests/comm_man.h
-Scheduled for removal  TESTS/RunTests/A++Tests/config.h
-Scheduled for removal  TESTS/RunTests/A++Tests/constants.h
-Scheduled for removal  TESTS/RunTests/A++Tests/d_op_all.C
-Scheduled for removal  TESTS/RunTests/A++Tests/data_hash.C
-Scheduled for removal  TESTS/RunTests/A++Tests/data_hash.h
-Scheduled for removal  TESTS/RunTests/A++Tests/descriptor.h
-Scheduled for removal  TESTS/RunTests/A++Tests/descriptor_cache.C
-Scheduled for removal  TESTS/RunTests/A++Tests/descriptor_notemplates.C
-Scheduled for removal  TESTS/RunTests/A++Tests/descriptor_notemplates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/descriptor_templates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/dimension_macros.h
-Scheduled for removal  TESTS/RunTests/A++Tests/domain.C
-Scheduled for removal  TESTS/RunTests/A++Tests/domain.h
-Scheduled for removal  TESTS/RunTests/A++Tests/error_checking.C
-Scheduled for removal  TESTS/RunTests/A++Tests/expression_templates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/f_op_all.C
-Scheduled for removal  TESTS/RunTests/A++Tests/i_op_all.C
-Scheduled for removal  TESTS/RunTests/A++Tests/index.C
-Scheduled for removal  TESTS/RunTests/A++Tests/index.h
-Scheduled for removal  TESTS/RunTests/A++Tests/index_operator_notemplates.C
-Scheduled for removal  TESTS/RunTests/A++Tests/inline_expression_templates.h
-Scheduled for removal  TESTS/RunTests/A++Tests/inline_func.h
-Scheduled for removal  TESTS/RunTests/A++Tests/inline_support.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_aggregate.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_aggregate.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_expression.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_expression.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_operand.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_operand.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_statement.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_statement.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_task.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_task.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_taskset.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazy_taskset.h
-Scheduled for removal  TESTS/RunTests/A++Tests/lazyarray.C
-Scheduled for removal  TESTS/RunTests/A++Tests/lazyarray.h
-Scheduled for removal  TESTS/RunTests/A++Tests/machine.h
-Scheduled for removal  TESTS/RunTests/A++Tests/max_array_dim.h
-Scheduled for removal  TESTS/RunTests/A++Tests/mdi_typedef.h
-Scheduled for removal  TESTS/RunTests/A++Tests/new_operators_notemplates.C
-Scheduled for removal  TESTS/RunTests/A++Tests/optimization.C
-Scheduled for removal  TESTS/RunTests/A++Tests/optimization.h
-Scheduled for removal  TESTS/RunTests/A++Tests/partitioning.C
-Scheduled for removal  TESTS/RunTests/A++Tests/partitioning.h
-Scheduled for removal  TESTS/RunTests/A++Tests/rose_abstract_op.C
-Scheduled for removal  TESTS/RunTests/A++Tests/rose_domain.C
-Scheduled for removal  TESTS/RunTests/A++Tests/static_initialization.C
-Scheduled for removal  TESTS/RunTests/A++Tests/test1.C
-Scheduled for removal  TESTS/RunTests/A++Tests/where.C
-Scheduled for removal  TESTS/RunTests/A++Tests/where.h
-Scheduled for removal  TESTS/RunTests/P++Tests/Makefile.am
-Scheduled for removal  TESTS/RunTests/P++Tests/ROSE_TRANSFORMATION_SOURCE_3.h
-Scheduled for removal  TESTS/RunTests/P++Tests/test1.C
-Scheduled for removal  coco/Coco.Report.ps
-Scheduled for removal  coco/Coco.Report.ps.Z
-Scheduled for removal  coco/Makefile.am
-Scheduled for removal  coco/cb.sh
-Scheduled for removal  coco/cocorc17.tgz
-Scheduled for removal  coco/dos2unix.sh
-Scheduled for removal  coco/dos2unix.uue
-Scheduled for removal  coco/history
-Scheduled for removal  coco/read.me
-Scheduled for removal  coco/readme.1st
-Scheduled for removal  coco/unix.mk
-Scheduled for removal  coco/cplus2/Makefile.am
-Scheduled for removal  coco/cplus2/cr_abs.cpp
-Scheduled for removal  coco/cplus2/cr_abs.hpp
-Scheduled for removal  coco/cplus2/cr_error.cpp
-Scheduled for removal  coco/cplus2/cr_error.hpp
-Scheduled for removal  coco/cplus2/cr_parse.cpp
-Scheduled for removal  coco/cplus2/cr_parse.hpp
-Scheduled for removal  coco/cplus2/cr_scan.cpp
-Scheduled for removal  coco/cplus2/cr_scan.hpp
-Scheduled for removal  coco/cplus2/unix.mk
-Scheduled for removal  coco/docs/coco.use
-Scheduled for removal  coco/docs/cocol
-Scheduled for removal  coco/docs/cocol.ps
-Scheduled for removal  coco/docs/cocor.1
-Scheduled for removal  coco/frames/compiler.frm
-Scheduled for removal  coco/frames/parser_c.frm
-Scheduled for removal  coco/frames/parser_h.frm
-Scheduled for removal  coco/frames/scan_c.frm
-Scheduled for removal  coco/frames/scan_h.frm
-Scheduled for removal  coco/frames/cplus2/ChangeLog.txt
-Scheduled for removal  coco/frames/cplus2/compiler.frm
-Scheduled for removal  coco/frames/cplus2/parser_c.frm
-Scheduled for removal  coco/frames/cplus2/parser_h.frm
-Scheduled for removal  coco/frames/cplus2/scan_c.frm
-Scheduled for removal  coco/frames/cplus2/scan_h.frm
-Scheduled for removal  coco/samples/adacs.atg
-Scheduled for removal  coco/samples/c.atg
-Scheduled for removal  coco/samples/calc.atg
-Scheduled for removal  coco/samples/calc.inp
-Scheduled for removal  coco/samples/cdecl.inp
-Scheduled for removal  coco/samples/cdecl1.atg
-Scheduled for removal  coco/samples/cdecl2.atg
-Scheduled for removal  coco/samples/cdecl3.atg
-Scheduled for removal  coco/samples/clang.inp
-Scheduled for removal  coco/samples/clang1.atg
-Scheduled for removal  coco/samples/clang2.atg
-Scheduled for removal  coco/samples/expr.atg
-Scheduled for removal  coco/samples/expr.inp
-Scheduled for removal  coco/samples/microada.atg
-Scheduled for removal  coco/samples/mod2.atg
-Scheduled for removal  coco/samples/oberon.atg
-Scheduled for removal  coco/samples/pascal.atg
-Scheduled for removal  coco/samples/pimmod2.atg
-Scheduled for removal  coco/samples/umbriel1.atg
-Scheduled for removal  coco/samples/umbriel2.atg
-Scheduled for removal  coco/sources/Makefile.am
-Scheduled for removal  coco/sources/collect.c
-Scheduled for removal  coco/sources/collect.h
-Scheduled for removal  coco/sources/cr.atg
-Scheduled for removal  coco/sources/cr.c
-Scheduled for removal  coco/sources/cr.frm
-Scheduled for removal  coco/sources/cra.c
-Scheduled for removal  coco/sources/cra.h
-Scheduled for removal  coco/sources/crc.h
-Scheduled for removal  coco/sources/cre.h
-Scheduled for removal  coco/sources/crf.c
-Scheduled for removal  coco/sources/crf.h
-Scheduled for removal  coco/sources/crp.c
-Scheduled for removal  coco/sources/crp.h
-Scheduled for removal  coco/sources/crs.c
-Scheduled for removal  coco/sources/crs.h
-Scheduled for removal  coco/sources/crt.c
-Scheduled for removal  coco/sources/crt.h
-Scheduled for removal  coco/sources/crx.c
-Scheduled for removal  coco/sources/crx.h
-Scheduled for removal  coco/sources/set.c
-Scheduled for removal  coco/sources/set.h
-Scheduled for removal  coco/sources/unix.mk
-Scheduled for removal  coco/sources/test/check
-Scheduled for removal  coco/taste/crossref.c
-Scheduled for removal  coco/taste/crossref.h
-Scheduled for removal  coco/taste/pretty.atg
-Scheduled for removal  coco/taste/pretty.c
-Scheduled for removal  coco/taste/prettypr.c
-Scheduled for removal  coco/taste/prettypr.h
-Scheduled for removal  coco/taste/slang
-Scheduled for removal  coco/taste/slang.atg
-Scheduled for removal  coco/taste/slang.c
-Scheduled for removal  coco/taste/slangc.h
-Scheduled for removal  coco/taste/slange.h
-Scheduled for removal  coco/taste/slangp.c
-Scheduled for removal  coco/taste/slangp.h
-Scheduled for removal  coco/taste/slangs.c
-Scheduled for removal  coco/taste/slangs.c.bak
-Scheduled for removal  coco/taste/slangs.c.new
-Scheduled for removal  coco/taste/slangs.h
-Scheduled for removal  coco/taste/taste.atg
-Scheduled for removal  coco/taste/taste.c
-Scheduled for removal  coco/taste/taste.frm
-Scheduled for removal  coco/taste/tc.c
-Scheduled for removal  coco/taste/tc.h
-Scheduled for removal  coco/taste/test.sla
-Scheduled for removal  coco/taste/test.tas
-Scheduled for removal  coco/taste/tl.c
-Scheduled for removal  coco/taste/tl.h
-Scheduled for removal  coco/taste/unix.mk
-Scheduled for removal  coco/taste/wrong.tas
-Scheduled for removal  coco/taste/xref.atg
-Scheduled for removal  coco/taste/xref.c
-Scheduled for removal  coco/taste/xref.frm
-Scheduled for removal  coco/taste_cp/crossref.cpp
-Scheduled for removal  coco/taste_cp/crossref.hpp
-Scheduled for removal  coco/taste_cp/myslang
-Scheduled for removal  coco/taste_cp/myslang.cpp
-Scheduled for removal  coco/taste_cp/pretty.atg
-Scheduled for removal  coco/taste_cp/prettypr.cpp
-Scheduled for removal  coco/taste_cp/prettypr.hpp
-Scheduled for removal  coco/taste_cp/slang
-Scheduled for removal  coco/taste_cp/slang.atg
-Scheduled for removal  coco/taste_cp/slang.cpp
-Scheduled for removal  coco/taste_cp/slangc.hpp
-Scheduled for removal  coco/taste_cp/slange.hpp
-Scheduled for removal  coco/taste_cp/slangp.cpp
-Scheduled for removal  coco/taste_cp/slangp.hpp
-Scheduled for removal  coco/taste_cp/slangs.cpp
-Scheduled for removal  coco/taste_cp/slangs.hpp
-Scheduled for removal  coco/taste_cp/taste.atg
-Scheduled for removal  coco/taste_cp/taste.frm
-Scheduled for removal  coco/taste_cp/tc.cpp
-Scheduled for removal  coco/taste_cp/tc.hpp
-Scheduled for removal  coco/taste_cp/test.sla
-Scheduled for removal  coco/taste_cp/test.tas
-Scheduled for removal  coco/taste_cp/tl.cpp
-Scheduled for removal  coco/taste_cp/tl.hpp
-Scheduled for removal  coco/taste_cp/unix.mk
-Scheduled for removal  coco/taste_cp/wrong.tas
-Scheduled for removal  coco/taste_cp/xref.atg
-Scheduled for removal  coco/taste_cp/xref.frm
-Scheduled for removal  dqDevelopmentDirectory/A++.h
-Scheduled for removal  dqDevelopmentDirectory/A++_notemplates.h
-Scheduled for removal  dqDevelopmentDirectory/Makefile.am
-Scheduled for removal  dqDevelopmentDirectory/README
-Scheduled for removal  dqDevelopmentDirectory/astAttributeTest.C
-Scheduled for removal  dqDevelopmentDirectory/blkgen.c
-Scheduled for removal  dqDevelopmentDirectory/confdefs.h
-Scheduled for removal  dqDevelopmentDirectory/conftest.C
-Scheduled for removal  dqDevelopmentDirectory/ctloutput.c
-Scheduled for removal  dqDevelopmentDirectory/fileFilter.C
-Scheduled for removal  dqDevelopmentDirectory/lexPhase2003_01.C
-Scheduled for removal  dqDevelopmentDirectory/lexPhase2003_02.C
-Scheduled for removal  dqDevelopmentDirectory/markus_typedef_error.C
-Scheduled for removal  dqDevelopmentDirectory/preprocessor.C
-Scheduled for removal  dqDevelopmentDirectory/printattr.c
-Scheduled for removal  dqDevelopmentDirectory/query_timer.c
-Scheduled for removal  dqDevelopmentDirectory/rgst_types.c
-Scheduled for removal  dqDevelopmentDirectory/sort2.c
-Scheduled for removal  dqDevelopmentDirectory/test.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_01.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_02.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_03.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_04.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_05.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_05.h
-Scheduled for removal  dqDevelopmentDirectory/test2001_06.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_07.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_08.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_09.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_10.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_11.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_12.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_13.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_14.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_15.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_15.h
-Scheduled for removal  dqDevelopmentDirectory/test2001_16.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_17.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_18.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_18A.h
-Scheduled for removal  dqDevelopmentDirectory/test2001_18B.h
-Scheduled for removal  dqDevelopmentDirectory/test2001_19.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_20.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_21.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_22.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_23.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_24.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_25.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_26.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_27.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_28.C
-Scheduled for removal  dqDevelopmentDirectory/test2001_29.C
-Scheduled for removal  dqDevelopmentDirectory/test2002_01.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_01.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_02.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_03.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_04.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_05.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_06.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_07.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_08.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_08.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_09.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_09.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_10.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_11.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_12.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_12.c
-Scheduled for removal  dqDevelopmentDirectory/test2003_12.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_13.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_14.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_14.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_15.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_16.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_17.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_18.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_19.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_20.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_21.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_22.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_22.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_23.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_24.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_24.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_25.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_25.h
-Scheduled for removal  dqDevelopmentDirectory/test2003_26.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_27.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_28.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_29.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_30.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_31.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_32.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_33.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_34.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_35.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_36.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_37.C
-Scheduled for removal  dqDevelopmentDirectory/test2003_38.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_01.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_02.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_03.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_04.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_05.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_06.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_07.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_08.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_09.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_10.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_11.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_12.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_13.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_14.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_15.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_16.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_17.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_18.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_19.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_20.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_22.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_23.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_24.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_25.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_26.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_27.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_28.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_29.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_30.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_31.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_32.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_33.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_34.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_35.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_36.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_37.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_38.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_39.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_40.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_41.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_42.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_43.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_44.C
-Scheduled for removal  dqDevelopmentDirectory/test2004_45.C
-Scheduled for removal  dqDevelopmentDirectory/testAnsi.C
-Scheduled for removal  dqDevelopmentDirectory/testAstAttributes_testFile.C
-Scheduled for removal  dqDevelopmentDirectory/testCvsCpp.c
-Scheduled for removal  dqDevelopmentDirectory/testFileFilter.C
-Scheduled for removal  dqDevelopmentDirectory/testNotEqualBut.C
-Scheduled for removal  dqDevelopmentDirectory/testQueryLib.C
-Scheduled for removal  dqDevelopmentDirectory/testQueryLib_testFile.C
-Scheduled for removal  dqDevelopmentDirectory/testTemplateSpecialization.C
-Scheduled for removal  dqDevelopmentDirectory/testTemplateSpecializationSupport.C
-Scheduled for removal  dqDevelopmentDirectory/testTemplates.C
-Scheduled for removal  dqDevelopmentDirectory/test_new_edg.C
-Scheduled for removal  dqDevelopmentDirectory/test_noname.C
-Scheduled for removal  dqDevelopmentDirectory/testcode.C
-Scheduled for removal  dqDevelopmentDirectory/typedefExamples.C
-Scheduled for removal  dqDevelopmentDirectory/userexitfn.c
-Scheduled for removal  midend/Makefile.am
-Scheduled for removal  midend/astUtil/Makefile.am
-Scheduled for removal  midend/astUtil/annotation/AnnotCollect.C
-Scheduled for removal  midend/astUtil/annotation/AnnotCollect.h
-Scheduled for removal  midend/astUtil/annotation/AnnotDescriptors.C
-Scheduled for removal  midend/astUtil/annotation/AnnotDescriptors.h
-Scheduled for removal  midend/astUtil/annotation/AnnotExpr.C
-Scheduled for removal  midend/astUtil/annotation/AnnotExpr.h
-Scheduled for removal  midend/astUtil/annotation/AnnotIO.C
-Scheduled for removal  midend/astUtil/annotation/AnnotIO.h
-Scheduled for removal  midend/astUtil/annotation/AnnotStmt.h
-Scheduled for removal  midend/astUtil/annotation/Makefile.am
-Scheduled for removal  midend/astUtil/annotation/OperatorAnnotation.C
-Scheduled for removal  midend/astUtil/annotation/OperatorAnnotation.h
-Scheduled for removal  midend/astUtil/annotation/OperatorDescriptors.C
-Scheduled for removal  midend/astUtil/annotation/OperatorDescriptors.h
-Scheduled for removal  midend/astUtil/annotation/TypeAnnotation.C
-Scheduled for removal  midend/astUtil/annotation/TypeAnnotation.h
-Scheduled for removal  midend/astUtil/astInterface/AstInterface.C
-Scheduled for removal  midend/astUtil/astInterface/AstInterface.h
-Scheduled for removal  midend/astUtil/astInterface/CPPAstInterface.C
-Scheduled for removal  midend/astUtil/astInterface/CPPAstInterface.h
-Scheduled for removal  midend/astUtil/astInterface/CheckSymbolTable.C
-Scheduled for removal  midend/astUtil/astInterface/CheckSymbolTable.h
-Scheduled for removal  midend/astUtil/astInterface/Makefile.am
-Scheduled for removal  midend/astUtil/astSupport/AnalysisInterface.h
-Scheduled for removal  midend/astUtil/astSupport/Makefile.am
-Scheduled for removal  midend/astUtil/astSupport/ProcessAstTree.C
-Scheduled for removal  midend/astUtil/astSupport/ProcessAstTree.h
-Scheduled for removal  midend/astUtil/astSupport/StmtInfoCollect.C
-Scheduled for removal  midend/astUtil/astSupport/StmtInfoCollect.h
-Scheduled for removal  midend/astUtil/symbolicVal/Makefile.am
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicBound.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicExpr.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicExpr.h
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicFind.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicMultiply.h
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicOperator.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicPlus.h
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicSelect.h
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicUnwrapCond.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicVal.C
-Scheduled for removal  midend/astUtil/symbolicVal/SymbolicVal.h
-Scheduled for removal  msDevelopment/Makefile.am
-Scheduled for removal  msDevelopment/UserDefList.h
-Scheduled for removal  msDevelopment/lextest.C
-Scheduled for removal  msDevelopment/mscomp.C
-Scheduled for removal  msDevelopment/onefileonly.C
-Scheduled for removal  msDevelopment/rev_test1.C
-Scheduled for removal  msDevelopment/rev_test2.C
-Scheduled for removal  msDevelopment/simpleA++.h
-Scheduled for removal  msDevelopment/test1.C
-Scheduled for removal  msDevelopment/test2.C
-Scheduled for removal  msDevelopment/test3.C
-Scheduled for removal  msDevelopment/test4.C
-Scheduled for removal  msDevelopment/test5.C
-Scheduled for removal  msDevelopment/test5.h
-Scheduled for removal  msDevelopment/test6.C
-Scheduled for removal  msDevelopment/test7.C
-Scheduled for removal  msDevelopment/test_exceptions1.C
-Scheduled for removal  msDevelopment/test_functiondecl1.C
-Scheduled for removal  msDevelopment/test_functiondecl2.C
-Scheduled for removal  msDevelopment/test_functiondecl2.h
-Scheduled for removal  msDevelopment/test_functiondecl3.C
-Scheduled for removal  msDevelopment/transformationOptions.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformation.atg
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformation.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformation.lst
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformationCocoCodes.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformationCocoErrorMessages.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformationParser.C
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformationParser.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformationParser_Declarations.h
-Scheduled for removal  msDevelopment/OmpTransformations/BodyTransformation_pp.atg
-Scheduled for removal  msDevelopment/OmpTransformations/Makefile.am
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformation.atg
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformationCocoCodes.h
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformationCocoErrorMessages.h
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformationParser.C
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformationParser.h
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformationParser_Declarations.h
-Scheduled for removal  msDevelopment/OmpTransformations/OmpLoopRATransformation_pp.atg
-Scheduled for removal  msDevelopment/OmpTransformations/compiler.frm
-Scheduled for removal  msDevelopment/OmpTransformations/notes.txt
-Scheduled for removal  msDevelopment/OmpTransformations/parser_c.frm
-Scheduled for removal  msDevelopment/OmpTransformations/parser_h.frm
-Scheduled for removal  msDevelopment/OmpTransformations/sgnode.cpp
-Scheduled for removal  msDevelopment/OmpTransformations/sgnodep.cpp
-Scheduled for removal  msDevelopment/OmpTransformations/sgnodep.hpp
-Scheduled for removal  src/command_line_options/.pure
-Scheduled for removal  src/command_line_options/Makefile.am
-Scheduled for removal  src/command_line_options/build.bup
-Scheduled for removal  src/command_line_options/buildCommandLine.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/Makefile.am
-Scheduled for removal  src/frontend/EDG/EDG_1.4/README
-Scheduled for removal  src/frontend/EDG/EDG_1.4/documentation.docs
-Scheduled for removal  src/frontend/EDG/EDG_1.4/save.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/stamp-h.in
-Scheduled for removal  src/frontend/EDG/EDG_1.4/bin/eccp
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/README
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/admin.tex
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/c_deproto.tex
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/c_gen_be.aux
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/plm.log
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/plm.ps
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/plm.toc
-Scheduled for removal  src/frontend/EDG/EDG_1.4/doc/psit
-Scheduled for removal  src/frontend/EDG/EDG_1.4/errinfo/Makefile.am
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/Changes
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/assert.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/ctype.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/errno.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/exception.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/float.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/iso646.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/limits.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/locale.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/math.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/new.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/setjmp.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/signal.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/stdarg.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/stddef.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/stdexcept.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/stdio.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/stdlib.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/string.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/time.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/include/typeinfo.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/Changes
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/Makefile
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/array_del.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/array_new.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/array_nonew.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/array_pdel.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/array_pnew.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/bad_alloc.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/basics.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/config.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/defines.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/delete.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/dtor_list.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/dtor_list.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/edg_exit.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/edg_exit.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/eh.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/eh_util.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/exception.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/exit.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/lib_eccp
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/main.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/main.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/memzero.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/munch_ctors.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/munch_dtors.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/new.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/newnothrow.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/placedel.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/placenew.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/pure_virt.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/rtti.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/rtti.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/runtime.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/set_new.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/static_init.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/static_init.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/stdexcept.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/throw.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/typeinfo.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/vars.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/vec_cctor.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/vec_newdel.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/vec_newdel.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/lib_src/vtbl.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/Makefile.am
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/Makefile.pcc
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/c_deproto.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/dettarg.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/mk_errinfo.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/misc/t.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/BUG_FIX_unnamedFieldsInStructs.txt
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Changes
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Makefile.am
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Makefile.ccpp
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Makefile.original
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Makefile.pcc
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/Patches
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/alternativeEdgSageInterface.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/b00_sage_gen_be.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/basic_hdrs.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/basics.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/c_gen_be.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/c_gen_be.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/cfe.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/class_decl.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/class_decl.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/cmd_line.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/cmd_line.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/const_ints.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/const_ints.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/cp_gen_be.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/cp_gen_be.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/debug.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/debug.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/debugging.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/debugging.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decl_hdrs.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decl_inits.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decl_inits.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decl_spec.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decl_spec.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/declarator.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/declarator.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decls.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/decls.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/def_arg.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/def_arg.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/defines.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/defines.h.proto
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/disambig.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/disambig.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/displayTree.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/displayTree.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/edg.cfg
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/err_codes.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/err_data.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/error.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/error.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/error_msg.txt
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/error_tag.txt
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/expr.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/expr.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/expr_hdrs.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/exprutil.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/exprutil.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/fe_common.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/fe_init.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/fe_init.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/fe_wrapup.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/fe_wrapup.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/float_pt.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/float_pt.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/folding.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/folding.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/func_def.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/func_def.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/host_envir.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/host_envir.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_alloc.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_alloc.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_def.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_display.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_display.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_file.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_read.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_read.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_to_str.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_to_str.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_walk.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_walk.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_write.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/il_write.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/inline.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/inline.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lang_feat.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/layout.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/layout.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lexical.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lexical.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/literals.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/literals.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lookup.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lookup.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_eh.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_eh.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_hdrs.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_il.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_il.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_init.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_init.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_name.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/lower_name.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/macro.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/macro.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/mem_manage.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/mem_manage.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/mem_tables.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/olddefines.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/overload.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/overload.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/patch1
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/pch.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/pch.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/pragma.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/pragma.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/preproc.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/preproc.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageCommonSourceHeader.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageFunctionPrototypes.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageGlobalVar.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageInlineFunctions.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageMacros.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sagePreInit.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sagePreInit.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sagePreInitGlobalVar.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageSupport.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageSupport.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sageTypedefs.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_cfe.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_debug.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_gen_be.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_gen_be.C.failingTest2003_05.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_gen_be.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_il_to_str.C
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sage_il_to_str.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/save-preproc.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/scope_stk.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/scope_stk.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sgidefines.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/statements.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/statements.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sundefines.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/symbol_ref.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/symbol_ref.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/symbol_tbl.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/symbol_tbl.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sys_predef.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/sys_predef.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/targ_def.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/target.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/target.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/templates.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/templates.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/types.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/types.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/version.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/src/walk_entry.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/Changes
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/Makefile.am
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/Makefile.pcc
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/decode.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/decode.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/edg_decode.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/edg_munch.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/edg_munch.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/edg_prelink.c
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/edg_prelink.h
-Scheduled for removal  src/frontend/EDG/EDG_1.4/util/getopt.h
-Scheduled for removal  src/unparser/Makefile.am
-Scheduled for removal  src/unparser/Unparser_README.txt
-Scheduled for removal  src/unparser/dependencies.incl
-Scheduled for removal  src/unparser/dependencies.incl.new
-Scheduled for removal  src/unparser/ir.out
-Scheduled for removal  src/unparser/modified_sage.C
-Scheduled for removal  src/unparser/sage_bugs.txt
-Scheduled for removal  src/unparser/unparse_expr.C
-Scheduled for removal  src/unparser/unparse_format.C
-Scheduled for removal  src/unparser/unparse_format.h
-Scheduled for removal  src/unparser/unparse_stmt.C
-Scheduled for removal  src/unparser/unparse_support.C
-Scheduled for removal  src/unparser/unparse_sym.C
-Scheduled for removal  src/unparser/unparse_type.C
-Scheduled for removal  src/unparser/unparser.C
-Scheduled for removal  src/unparser/unparser.docs
-Scheduled for removal  src/unparser/unparser.h
-Scheduled for removal  src/unparser/unparser_opt.C
-Scheduled for removal  src/unparser/unparser_opt.h
-Scheduled for removal  util/Makefile.am
-Scheduled for removal  util/commandline_processing.C
-Scheduled for removal  util/commandline_processing.h
-Scheduled for removal  util/roseString.C
-Scheduled for removal  util/roseString.h
-Scheduled for removal  util/setup.h
-Scheduled for removal  util/sla++.C
-Scheduled for removal  util/sla.c
-Scheduled for removal  util/sla.h
-Scheduled for removal  util/string_functions.C
-Scheduled for removal  util/string_functions.h
-Scheduled for removal  util/testStrings.C
-Scheduled for removal  util/utilDocumentation.docs
-Scheduled for removal  util/graphs/BaseGraphCreate.h
-Scheduled for removal  util/graphs/BaseGraphTemp.h
-Scheduled for removal  util/graphs/DGBaseGraphImpl.C
-Scheduled for removal  util/graphs/DGBaseGraphImpl.h
-Scheduled for removal  util/graphs/DGBaseGraphTemp.h
-Scheduled for removal  util/graphs/Dump.C
-Scheduled for removal  util/graphs/GraphDotOutput.h
-Scheduled for removal  util/graphs/GraphGroup.h
-Scheduled for removal  util/graphs/GraphInterface.h
-Scheduled for removal  util/graphs/GraphScope.h
-Scheduled for removal  util/graphs/GraphTemplate.h
-Scheduled for removal  util/graphs/GraphUpdate.h
-Scheduled for removal  util/graphs/IDGraphCreate.C
-Scheduled for removal  util/graphs/IDGraphCreate.h
-Scheduled for removal  util/graphs/IDGraphCreateTemp.h
-Scheduled for removal  util/graphs/Makefile.am
-Scheduled for removal  util/graphs/SCCAnalysis.C
-Scheduled for removal  util/graphs/SCCAnalysis.h
-Scheduled for removal  util/graphs/TransAnalysis.C
-Scheduled for removal  util/graphs/TransAnalysis.h
-Scheduled for removal  util/graphs/TypedFusion.C
-Scheduled for removal  util/graphs/TypedFusion.h
-Scheduled for removal  util/support/Adaptors.h
-Scheduled for removal  util/support/BitVectorRepr.h
-Scheduled for removal  util/support/CommandOptions.C
-Scheduled for removal  util/support/CommandOptions.h
-Scheduled for removal  util/support/CountRefHandle.h
-Scheduled for removal  util/support/DAG.C
-Scheduled for removal  util/support/DAG.h
-Scheduled for removal  util/support/DirectedGraph.C
-Scheduled for removal  util/support/DirectedGraph.h
-Scheduled for removal  util/support/DoublyLinkedList.h
-Scheduled for removal  util/support/FunctionObject.h
-Scheduled for removal  util/support/IteratorCompound.h
-Scheduled for removal  util/support/IteratorTmpl.h
-Scheduled for removal  util/support/LatticeElemList.h
-Scheduled for removal  util/support/Makefile.am
-Scheduled for removal  util/support/Matrix.h
-Scheduled for removal  util/support/ObserveObject.h
-Scheduled for removal  util/support/PtrMap.h
-Scheduled for removal  util/support/PtrSet.h
-Scheduled for removal  util/support/SinglyLinkedList.h
-Scheduled for removal  util/support/StreamIO.h
-Scheduled for removal  util/support/TreeImpl.h
-Scheduled for removal  util/support/const.h
-Scheduled for removal  util/support/general.h
-Scheduled for removal  util/support/union_find.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/BJMmacros.tar.gz
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Makefile.user
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Makefile.user.defs.in
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/RUN_ME_AFTER_CHECKOUT.sh
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995.tar.gz
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros.tar.gz
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/benchToolsConfig.h.in
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/build
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/configure.in
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/install-sh
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/BenchmarkBase.C
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/BenchmarkBase.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/Makefile.user
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/ReferenceCounting.C
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/Base/ReferenceCounting.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/algo.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/algobase.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/bool.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/bvector.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/defalloc.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/deque.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/faralloc.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/fdeque.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/flist.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/fmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/fmultmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/fmultset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/fset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/function.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hdeque.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/heap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hlist.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hmultmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hmultset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hugalloc.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/hvector.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/iterator.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lbvector.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/ldeque.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/list.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/llist.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lmultmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lmultset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lngalloc.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/lset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/map.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/multimap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/multiset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/neralloc.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/nmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/nmultmap.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/nmultset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/nset.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/pair.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/projectn.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/set.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/stack.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/tempbuf.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/tree.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/STL-1995/vector.h
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/A++P++_common_autoconfig.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/A++P++_common_compiler.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/BJM_choose_STL.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/Makefile.config.in
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/Makefile.setup
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/P++_autoconfig.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/P++_mpirun_check.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/P++_test_execution_scripts.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/PADRE.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/ap-mpi.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/common-compiler-environment.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/inherit-or-cache-variable.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/parallel_test_script.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/shared_lib_check.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/specify-ar.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/config/support-Fortran.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/AUTHORS
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/ChangeLog
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/Makefile.am
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/NEWS
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/README
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/arg-with-environment.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/check-typename.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/choose-STL.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/choose-mp-interface.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/compiler-ar.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/compiler-id.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/compiling-boolean.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/compiling-namespace.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/compiling-stl.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/configure-log.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/configure.ac
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/find-all-progs.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/link-to-source.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/preconf
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/specify-ar.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-blaslapack.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-dl.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-fortran.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-hdf5.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-hypre.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-ieee-float.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-insure.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-lam.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-libz.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-mpi.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-mpich.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-nsl.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-petsc.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-restrict.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-rpath.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-samrai.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-serpa-run.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/support-socket.m4
-Scheduled for removal  TESTS/PerformanceTests/BenchmarkBase/acmacros/variable-header-filenames.m4
********* WARNINGS *********
cvs update: warning: new-born src/3rdPartyLibraries/MSTL/MSTL.docs~ has disappeared
cvs update: warning: new-born src/3rdPartyLibraries/MSTL/Makefile.am~ has disappeared
cvs update: warning: new-born src/3rdPartyLibraries/coco/Makefile.am~ has disappeared
********* ERRORS *********

	
2004-5-30 Dan Quinlan 0.7.4a
	* Added template handling support to ROSE
	      * New IR nodes for representation of templates in AST
	      * Support for "prelinking" template instantiation
	      * Suppport for transformations on instantiated templates
	      * Support for unparsing templates
	      * Support for unparsing the instantiations (classes and
	        functions)
	* Added support in node query mechanism to permit query on variant
	      * Permits extraction of any variant or combination of
	        variants from the AST.
	      * Permits specification of subtrees (in hierarchy) of IR
	        nodes (e.g. SgDeclarationStatement, SgBinaryOp, etc.)
	      * Permits digging out types in traversed nodes (QueryDepth)
	             * QueryDepth can be specified to be: ChildrenOnly,
	               AllNodes (all traversed nodes), and ExtractTypes
	               (digs types out of traversed IR nodes).
	* Added commandline handling (packaged for use by user and
	  internally in ROSE). Located in:
	     ROSE/util/commandline_processing.[h,C]
	* moved lower level commandline handling SLA files to
	  ROSE/util directory.
	* Added documentation to outline how to add IR nodes.
	* Added documentation on how to add custom commandline processing.
	* Added commandline support to permit passing edg options through
	  to the edg frontend:
	     --edg:xxx               passes --xxx     to the edg frontend
	     -edg:xxx                passes -xxx      to the edg frontend
	     --edg_parameter:xxx abc passes --xxx abc to the edg frontend
	     --edg_parameter:xxx n   passes --xxx  n  to the edg frontend
	  For full range of EDG options consult EDG documentation (section
	  2.1).  Even complex options may be passed: 
	       --edg_parameter:define_macro XYZ,ABC,DEF=3! 
	  However, now that al this works, it is clear that many EDG
	  options do not appear to work properly.  Have not attempted
	  debugging EDG directly to get more info on this.
	* Added support for Old-style C function definitions (which is 
	  part of the ANSI standard for C (even in the c99 standard!)).
	  Old-style C function definitions seem to be the only thing 
	  missing to compile older K&R C applications.
	* Added support in EDG/SAGE III connection for UPC
	* Added support in SAGE III SgModifierType for shared, strict, and
	  relaxed.
	* corrected spelling of SgTemplateInstantiationSymboSym to 
	  SgTemplateInstantiationSymbolSym.
	* Fixed generation of Cxx_GrammarCocoSymbolsMapping.C to not
	  truncate names (fixed grammar.C Grammar::cocoScannerDefineName()).
	  Added comment and date to make the change clear.
	* Added documentation to appendix.tex to explain how tempplates
	  are handled in ROSE.
	* Turned on export keyword support in EDG for templates.
	* Turned on exception handling support in EDG.
	* Added Beata's tip to remote use of CVS repository to ROSE/README
	  file.
	* Redesigned how modifiers (specifiers) used, implemented and accessed.
	* Added support for "mutable" keyword
	* Added support for "register" keyword (bug reported by Chadd).
	* Added support for "restrict" keyword.
	    Use of "restrict" requires --edg:restrict command line option.
	* Added support for "export" keyword for templates (a bug in EDG
	    does not mark exported template member functions properly, so
	    this is a current limitation (though g++ does not support the 
	    "export" keyword at all (it give a warning and ignores it)).
	    Use of "export" requires --edg:export command line option.
	* Fixed bugs required to parse STL application (using list class)
	* Fixed handling of "()" in calls to compiler-generated vs. user
	    supplied default constructors (see test2001_06.C).
	* Fixed handling of g++ command line generation when using "-e"
	  options (previous template support for prelinking broke this).
	* Added test codes that had accumulated in my development
	  directory into the ROSE/TESTS/CompileTests/C++Code directory.
	* Removed option to use older EDG version 1.4 C++ frontend
	  (default was previously EDG version 3.3, this is now the only
	  version of EDG supported).  Newer versions of EDG can be easily
	  supported as they become available.
	* Added current state of several proposals for modifications to
	  ROSE (in ROSE/proposals directory).
	* Fixed ROSE/ProgramAnalysis/CFG/Makefile.am to use parallel make
	  (notes in file specify details of what was wrong and what was
	    fixed).
	* Commented out LoopProcessing/test testcode since diff obtained
	    incorrect match (check details with Qing).
	* Lots of other bugs fixed as well, too many go into detail about
	  (represented by test code test2004_18.C - test2004_45.C).
	 

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   Makefile.am
>Locally modified   README
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
>Locally modified   AstProcessingLib/AgDefaultError.h
>Locally modified   AstProcessingLib/AgProcessing.C
>Locally modified   AstProcessingLib/AstProcessing.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/AstRestructure.C
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
>Locally modified   AstProcessingLib/AstTests.C
>Locally modified   AstProcessingLib/AstTests.h
>Locally modified   AstProcessingLib/AstTextAttributesHandling.C
>Locally modified   AstProcessingLib/abstractcppgrammar.atg
>Locally modified   AstProcessingLib/sgnodec.hpp
>Locally modified   AstProcessingLib/sgnodep.cpp
>Locally modified   ContainerParallelizer/CPTransformation/BodyTransformationParser.C
>Locally modified   ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/exampleMakefile.in
>Locally modified   QueryLibs/NameQuery/nameQuery.h
>Locally modified   QueryLibs/NodeQuery/nodeQuery.C
>Locally modified   QueryLibs/NodeQuery/nodeQuery.h
>Locally modified   QueryLibs/NodeQuery/nodeQueryInheritedAttribute.C
>Locally modified   ROSETTA/Grammar/Expression.code
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/Grammar/Symbol.code
>Locally modified   ROSETTA/Grammar/Type.code
>Locally modified   ROSETTA/src/addNonTerminal.C
>Locally modified   ROSETTA/src/expression.C
>Locally modified   ROSETTA/src/grammar.C
>Locally modified   ROSETTA/src/statement.C
>Locally modified   ROSETTA/src/support.C
>Locally modified   ROSETTA/src/symbol.C
>Locally modified   ROSETTA/src/type.C
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/Makefile.am
>Locally modified   SAGE/attachPreprocessingInfo.C
>Locally modified   SAGE/sage3.h
>Locally modified   TESTS/CompileTests/A++Code/A++_headers.h
>Locally modified   TESTS/CompileTests/A++Code/partitioning.C
>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
>Locally modified   TESTS/CompileTests/C++Code/test2001_01.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_03.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_04.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_06.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_09.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_11.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_14.C
>Locally modified   TESTS/CompileTests/C++Code/test2001_15.C
>Locally modified   TESTS/CompilerOptionsTests/A++Code/A++_headers.h
>Locally modified   TESTS/CompilerOptionsTests/A++Code/array_notemplates.C
>Locally modified   config/EDG.m4
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/preprocessorDesign.tex
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   dqDevelopmentDirectory/test.C
>Locally modified   dqDevelopmentDirectory/test2001_06.C
>Locally modified   dqDevelopmentDirectory/test2004_11.C
>Locally modified   msDevelopment/Makefile.am
>Locally modified   msDevelopment/OmpTransformations/BodyTransformationParser.C
>Locally modified   msDevelopment/OmpTransformations/OmpLoopRATransformationParser.C
>Locally modified   msDevelopment/OmpTransformations/sgnodep.cpp
>Locally modified   proposals/islandsOfUntraversedAST.txt
>Locally modified   src/Makefile.am
>Locally modified   src/preprocessorSupport.C
>Locally modified   src/roseInternal.h
>Locally modified   src/roseTranslators.h
>Locally modified   src/transformationSupport.C
>Locally modified   src/utility_functions.C
>Locally modified   src/command_line_options/Makefile.am
>Locally modified   src/command_line_options/buildCommandLine.C
>Locally modified   src/frontend/EDG/Makefile.am
>Locally modified   src/frontend/EDG/EDG_1.4/src/sage_gen_be.C
>Locally modified   src/frontend/EDG/EDG_3.3/src/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_def.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_walk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/lang_feat.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/scope_stk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/templates.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/templates.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/types.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cmd_line.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il_walk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/scope_stk.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/templates.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/types.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_decode.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.h
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageMacros.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.h
>Locally modified   src/unparser/Makefile.am
>Locally modified   src/unparser/modified_sage.C
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_format.C
>Locally modified   src/unparser/unparse_format.h
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparse_type.C
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
>Locally modified   util/Makefile.am
>Locally modified   util/string_functions.C
>Locally modified   util/string_functions.h
********* Needs CVS Update *********
<Needs Update        ContainerParallelizer/Makefile.am
<Needs Update        ContainerParallelizer/CPAnalysis/ContainerAnalyzer.C
<Needs Update        ContainerParallelizer/CPAnalysis/TestParallelLoop.C
<Needs Update        ContainerParallelizer/CPAnalysis/TestParallelLoop.h
<Needs Update        ContainerParallelizer/CPTransformation/Makefile.am
<Needs Update        LoopProcessing/HackTemplate.C
<Needs Update        LoopProcessing/LoopProcessor.C
<Needs Update        LoopProcessing/LoopTransformInterface.C
<Needs Update        LoopProcessing/LoopTransformInterface.h
<Needs Update        LoopProcessing/Makefile.am
<Needs Update        LoopProcessing/computation/LoopInfo.h
<Needs Update        LoopProcessing/computation/LoopTree.C
<Needs Update        LoopProcessing/computation/LoopTree.h
<Needs Update        LoopProcessing/computation/LoopTreeBuild.h
<Needs Update        LoopProcessing/computation/LoopTreeDepComp.C
<Needs Update        LoopProcessing/computation/LoopTreeDepComp.h
<Needs Update        LoopProcessing/computation/LoopTreeDummyNode.C
<Needs Update        LoopProcessing/computation/LoopTreeDummyNode.h
<Needs Update        LoopProcessing/computation/LoopTreeLocality.C
<Needs Update        LoopProcessing/computation/LoopTreeObserver.h
<Needs Update        LoopProcessing/computation/LoopTreeShadow.C
<Needs Update        LoopProcessing/computation/LoopTreeShadow.h
<Needs Update        LoopProcessing/computation/LoopTreeTransform.C
<Needs Update        LoopProcessing/computation/Makefile.am
<Needs Update        LoopProcessing/depGraph/DepGraph.h
<Needs Update        LoopProcessing/depGraph/DepGraphBuild.C
<Needs Update        LoopProcessing/depGraph/DepGraphBuild.h
<Needs Update        LoopProcessing/depGraph/DepGraphTransform.C
<Needs Update        LoopProcessing/depGraph/LoopAnalysis.C
<Needs Update        LoopProcessing/depGraph/Makefile.am
<Needs Update        LoopProcessing/depGraph/TransDepGraph.C
<Needs Update        LoopProcessing/depGraph/TransDepGraph.h
<Needs Update        LoopProcessing/depInfo/DepEDD.C
<Needs Update        LoopProcessing/depInfo/DepInfo.C
<Needs Update        LoopProcessing/depInfo/DepInfo.h
<Needs Update        LoopProcessing/depInfo/DepInfoAnal.C
<Needs Update        LoopProcessing/depInfo/DepInfoAnal.h
<Needs Update        LoopProcessing/depInfo/DepInfoAnalImpl.C
<Needs Update        LoopProcessing/depInfo/DepInfoSet.C
<Needs Update        LoopProcessing/depInfo/DepRel.C
<Needs Update        LoopProcessing/depInfo/DepRel.h
<Needs Update        LoopProcessing/depInfo/DomainInfo.C
<Needs Update        LoopProcessing/depInfo/DomainInfo.h
<Needs Update        LoopProcessing/depInfo/Makefile.am
<Needs Update        LoopProcessing/depInfo/StmtDepAnal.C
<Needs Update        LoopProcessing/driver/BlockingAnal.C
<Needs Update        LoopProcessing/driver/BlockingAnal.h
<Needs Update        LoopProcessing/driver/FusionAnal.C
<Needs Update        LoopProcessing/driver/InterchangeAnal.C
<Needs Update        LoopProcessing/driver/LoopTransformOptions.C
<Needs Update        LoopProcessing/driver/LoopTransformOptions.h
<Needs Update        LoopProcessing/driver/Makefile.am
<Needs Update        LoopProcessing/driver/TransformAstTree.C
<Needs Update        LoopProcessing/driver/TransformAstTree.h
<Needs Update        LoopProcessing/driver/TransformComputation.C
<Needs Update        LoopProcessing/driver/TypedFusionImpl.C
<Needs Update        LoopProcessing/slicing/CompSlice.C
<Needs Update        LoopProcessing/slicing/CompSlice.h
<Needs Update        LoopProcessing/slicing/CompSliceDepGraph.C
<Needs Update        LoopProcessing/slicing/CompSliceDepGraph.h
<Needs Update        LoopProcessing/slicing/CompSliceLocality.C
<Needs Update        LoopProcessing/slicing/CompSliceLocality.h
<Needs Update        LoopProcessing/slicing/CompSliceRegistry.h
<Needs Update        LoopProcessing/slicing/DependenceHoisting.C
<Needs Update        LoopProcessing/slicing/DynamicCompSlice.C
<Needs Update        LoopProcessing/slicing/Makefile.am
<Needs Update        LoopProcessing/test/Makefile.am
<Needs Update        LoopProcessing/test/TestLoopProcessor.C
<Needs Update        LoopProcessing/test/rose_lufac.C
<Needs Update        LoopProcessing/test/rose_mm.C
<Needs Update        LoopProcessing/test/rose_tridvpk.C
<Needs Update        ProgramAnalysis/Makefile.am
<Needs Update        ProgramAnalysis/CFG/CFG.h
<Needs Update        ProgramAnalysis/CFG/CFGImpl.C
<Needs Update        ProgramAnalysis/CFG/CFGImpl.h
<Needs Update        ProgramAnalysis/CFG/CFGTest.C
<Needs Update        ProgramAnalysis/CFG/CFG_OA.C
<Needs Update        ProgramAnalysis/CFG/CFG_ROSE.C
<Needs Update        ProgramAnalysis/CFG/Makefile.am
<Needs Update        Projects/Makefile.am
<Needs Update        ROSETTA/Grammar/LocatedNode.code
<Needs Update        ROSETTA/src/grammarString.C
<Needs Update        BJMmacros/BJM-common-autoconfig.m4
********* FILES NEEDING A MERGE *********
!NEEDS MERGE        ChangeLog
********* Files Scheduled to be added *********
+Scheduled for add      AST_RewriteMechanism/inputProgram4.C
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/commandLineProcessingExample.C
+Scheduled for add      SCRIPTS/generateDirectoryGraph
+Scheduled for add      TESTS/CompileTests/C++Code/A++Test.C
+Scheduled for add      TESTS/CompileTests/C++Code/AndreasTranslator.C
+Scheduled for add      TESTS/CompileTests/C++Code/astAttributeTest.C
+Scheduled for add      TESTS/CompileTests/C++Code/commandlineProcessor.C
+Scheduled for add      TESTS/CompileTests/C++Code/conftest.C
+Scheduled for add      TESTS/CompileTests/C++Code/fileFilter.C
+Scheduled for add      TESTS/CompileTests/C++Code/interp.C
+Scheduled for add      TESTS/CompileTests/C++Code/lexPhase2003_01.C
+Scheduled for add      TESTS/CompileTests/C++Code/lexPhase2003_02.C
+Scheduled for add      TESTS/CompileTests/C++Code/markus_typedef_error.C
+Scheduled for add      TESTS/CompileTests/C++Code/preprocessor.C
+Scheduled for add      TESTS/CompileTests/C++Code/redblack.C
+Scheduled for add      TESTS/CompileTests/C++Code/riemann.C
+Scheduled for add      TESTS/CompileTests/C++Code/rose_interp.C
+Scheduled for add      TESTS/CompileTests/C++Code/rose_test2004_20.C
+Scheduled for add      TESTS/CompileTests/C++Code/test.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_12.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_13.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_16.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_23.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_24.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_25.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_26.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_27.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_28.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2001_29.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2002_01.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_01.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_02.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_03.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_04.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_05.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_06.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_07.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_08.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_08.h
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_09.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_10.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_11.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_12.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_13.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_14.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_15.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_16.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_17.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_18.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_19.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_20.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_21.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_22.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_23.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_24.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_25.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_26.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_27.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_28.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_29.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_30.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_31.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_32.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_33.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_34.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_35.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_36.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_37.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2003_38.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_01.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_02.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_03.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_04.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_05.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_06.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_07.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_08.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_09.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_10.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_11.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_12.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_13.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_14.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_15.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_16.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_17.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_18.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_19.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_20.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_22.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_23.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_24.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_25.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_26.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_27.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_28.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_29.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_30.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_31.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_32.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_33.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_34.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_35.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_36.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_37.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_38.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_39.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_40.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_40.h
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_41.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_42.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_43.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_44.C
+Scheduled for add      TESTS/CompileTests/C++Code/test2004_45.C
+Scheduled for add      TESTS/CompileTests/C++Code/testAnsi.C
+Scheduled for add      TESTS/CompileTests/C++Code/testAstAttributes_testFile.C
+Scheduled for add      TESTS/CompileTests/C++Code/testFileFilter.C
+Scheduled for add      TESTS/CompileTests/C++Code/testNotEqualBut.C
+Scheduled for add      TESTS/CompileTests/C++Code/testQueryLib.C
+Scheduled for add      TESTS/CompileTests/C++Code/testQueryLib_testFile.C
+Scheduled for add      TESTS/CompileTests/C++Code/testTemplateSpecialization.C
+Scheduled for add      TESTS/CompileTests/C++Code/testTemplateSpecializationSupport.C
+Scheduled for add      TESTS/CompileTests/C++Code/testTemplates.C
+Scheduled for add      TESTS/CompileTests/C++Code/test_new_edg.C
+Scheduled for add      TESTS/CompileTests/C++Code/test_noname.C
+Scheduled for add      TESTS/CompileTests/C++Code/testcode.C
+Scheduled for add      TESTS/CompileTests/C++Code/typedefExamples.C
+Scheduled for add      dqDevelopmentDirectory/test2004_18.C
+Scheduled for add      dqDevelopmentDirectory/test2004_19.C
+Scheduled for add      dqDevelopmentDirectory/test2004_20.C
+Scheduled for add      dqDevelopmentDirectory/test2004_22.C
+Scheduled for add      dqDevelopmentDirectory/test2004_23.C
+Scheduled for add      dqDevelopmentDirectory/test2004_24.C
+Scheduled for add      dqDevelopmentDirectory/test2004_25.C
+Scheduled for add      dqDevelopmentDirectory/test2004_26.C
+Scheduled for add      dqDevelopmentDirectory/test2004_27.C
+Scheduled for add      dqDevelopmentDirectory/test2004_28.C
+Scheduled for add      dqDevelopmentDirectory/test2004_29.C
+Scheduled for add      dqDevelopmentDirectory/test2004_30.C
+Scheduled for add      dqDevelopmentDirectory/test2004_31.C
+Scheduled for add      dqDevelopmentDirectory/test2004_32.C
+Scheduled for add      dqDevelopmentDirectory/test2004_33.C
+Scheduled for add      dqDevelopmentDirectory/test2004_34.C
+Scheduled for add      dqDevelopmentDirectory/test2004_35.C
+Scheduled for add      dqDevelopmentDirectory/test2004_36.C
+Scheduled for add      dqDevelopmentDirectory/test2004_37.C
+Scheduled for add      dqDevelopmentDirectory/test2004_38.C
+Scheduled for add      dqDevelopmentDirectory/test2004_39.C
+Scheduled for add      dqDevelopmentDirectory/test2004_40.C
+Scheduled for add      dqDevelopmentDirectory/test2004_41.C
+Scheduled for add      dqDevelopmentDirectory/test2004_42.C
+Scheduled for add      dqDevelopmentDirectory/test2004_43.C
+Scheduled for add      dqDevelopmentDirectory/test2004_44.C
+Scheduled for add      dqDevelopmentDirectory/test2004_45.C
+Scheduled for add      dqDevelopmentDirectory/testAnsi.C
+Scheduled for add      dqDevelopmentDirectory/testTemplateSpecialization.C
+Scheduled for add      dqDevelopmentDirectory/testTemplateSpecializationSupport.C
+Scheduled for add      dqDevelopmentDirectory/testTemplates.C
+Scheduled for add      dqDevelopmentDirectory/test_noname.C
+Scheduled for add      proposals/ProposedMergeWithTexasAandM.txt
+Scheduled for add      proposals/RoseProposedDirectoryStructure.dot
+Scheduled for add      proposals/RoseProposedDirectoryStructure.ps
+Scheduled for add      proposals/Rosetta.txt
+Scheduled for add      proposals/SageIIInotes.txt
+Scheduled for add      proposals/inlining.txt
+Scheduled for add      proposals/localityMetricIdeas.txt
+Scheduled for add      proposals/modifiers_design.txt
+Scheduled for add      proposals/secureSoftware.txt
+Scheduled for add      proposals/testingProposal.txt
+Scheduled for add      proposals/tools.txt
+Scheduled for add      proposals/feedbackFromUsers/Beata-2-2-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/Beata-3-11-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/Beata-3-25-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/Beata-3-5-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/BrianWhite-2-13-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/BrianWhite-3-8-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/BrianWhite-3-9-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/Chadd-2-12-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/Chadd-3-24-2004.txt
+Scheduled for add      proposals/feedbackFromUsers/JeremiahWillcock-5-27-2004.txt
+Scheduled for add      src/templateSupport.C
+Scheduled for add      src/templateSupport.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_def.h.Andreas
+Scheduled for add      src/unparser/unparse_support.C
+Scheduled for add      util/commandline_processing.C
+Scheduled for add      util/commandline_processing.h
+Scheduled for add      util/setup.h
+Scheduled for add      util/sla++.C
+Scheduled for add      util/sla.c
+Scheduled for add      util/sla.h
********* Files Scheduled to be removed *********
-Scheduled for removal  src/command_line_options/sla++.C
-Scheduled for removal  src/command_line_options/sla.c
-Scheduled for removal  src/command_line_options/sla.h
-Scheduled for removal  src/frontend/EDG_SAGE_Connection/sageInlineFunctions.h
-Scheduled for removal  src/frontend/EDG_SAGE_Connection/sageNameSupport.h
-Scheduled for removal  src/frontend/EDG_SAGE_Connection/sageSupport.h
-Scheduled for removal  src/frontend/EDG_SAGE_Connection/sage_cfe.C
********* WARNINGS *********
********* ERRORS *********



	
2004-4-29 Qing Yi 0.7.3a
	* Added util/graphs and util/support directories, which were moved from
	  the LoopProcessing directory. Also added midend/astUtil/ directory,
	  which contains astInterface, astSupport, and symbolicVal directories,
	  moved from the original LoopProcessing and ProgramAnalysis 
	  directories; and annotation subdirectory, which is new. 
	  The astUtil directory contains AST related facilities
	  that can be used by higher-level AST processing codes, such as
	  the LoopProcessing and ProgramAnalysis implementations.
	* Added Projects/arrayOptimization directory, which contains code that
	  applies optimizations to array containers with semantics similar
	  to the A++ library.  Optimizations include both loop transformations
	  in LoopProcessing directory and further rewriting of collective 
	  array operators into lower-level explicit loop implementations.
	* Added ProgramAnalysis/dataflowAnalysis directory, which contains
	  code implementing classic iterative data flow analysis algorithms.
	  implemented reaching definition analysis and def-use chain.
	* Added ProgramAnalysis/valuePropagation directory, which uses both
	  annotations and def-use chain analysis to propagate annotated 
	  property values of class objects. Used in arrayOptimization.
	* LoopProcessing:
	   - rearranged directory structure: moved graphs and support
	     directories to ROSE/util; removed outsideInterface directory, 
	     moved LoopTransformInterface.h/C into LoopProcessing root;
	     moved AstInterface.h/C into midend/astUtil/astInterface;
	     split original BlockingAnal.h into .h and .C; moved original
	     BreakupStatement.h/C into the new TransformAstTree.h/C in the
	     "driver" subdirectory;
	   - Improved dependence analysis to handle some cases of linearized
	     arrays. Added loop unrolling. Changed profitability of blocking
	     analysis to consider spatial reuses in addition to temporal ones.
	* ContainerParallelizer/CPAnalysis:
	  - Removed the old UserSpec.h to use the new annotation facilities
	    in midend/astUtil/annotation
	* ROSETTA/Grammar/LocatedNode.code: changed interface for
	  "AttachedPreprocessingInfoType* getAttachedPreprocessingInfo(void);"
	  to become 
	  "AttachedPreprocessingInfoType*& getAttachedPreprocessingInfo(void)",
	  thereby allowing attached preprocessing info. to be copied in
	  the SgNode::copy implementation.
	* ROSETTA/Grammar/Node.code: commented out "assert (parent != NULL);"
	  in SgNode::set_parent, because we should allow setting parent to 
	  NULL when detaching AST subtrees, eg., when replacing one tree with
	  another.
	* ROSETTA/src/grammarString.C: fixed line 39 in implementing 
	  SgNode::copy so that a pointer is checked whether it's NULL before 
	  accessing the destiniation.
	* src/unparser/unparse_format.C: fixed the mixups in calling 
	  SgNode::variantT() vs. SgNode::variant(), an old mixup made when
	  I didn't know the difference yet.

********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   ContainerParallelizer/Makefile.am
>Locally modified   ContainerParallelizer/CPAnalysis/ContainerAnalyzer.C
>Locally modified   ContainerParallelizer/CPAnalysis/Makefile.am
>Locally modified   ContainerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   ContainerParallelizer/CPAnalysis/TestParallelLoop.h
>Locally modified   ContainerParallelizer/CPTransformation/Makefile.am
>Locally modified   ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   LoopProcessing/HackTemplate.C
>Locally modified   LoopProcessing/LoopProcessor.C
>Locally modified   LoopProcessing/LoopTransformInterface.C
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   LoopProcessing/computation/LoopInfo.h
>Locally modified   LoopProcessing/computation/LoopTree.C
>Locally modified   LoopProcessing/computation/LoopTree.h
>Locally modified   LoopProcessing/computation/LoopTreeBuild.h
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.C
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.h
>Locally modified   LoopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   LoopProcessing/computation/LoopTreeDummyNode.h
>Locally modified   LoopProcessing/computation/LoopTreeLocality.C
>Locally modified   LoopProcessing/computation/LoopTreeObserver.h
>Locally modified   LoopProcessing/computation/LoopTreeShadow.C
>Locally modified   LoopProcessing/computation/LoopTreeShadow.h
>Locally modified   LoopProcessing/computation/LoopTreeTransform.C
>Locally modified   LoopProcessing/computation/Makefile.am
>Locally modified   LoopProcessing/depGraph/DepGraph.h
>Locally modified   LoopProcessing/depGraph/DepGraphBuild.C
>Locally modified   LoopProcessing/depGraph/DepGraphBuild.h
>Locally modified   LoopProcessing/depGraph/DepGraphTransform.C
>Locally modified   LoopProcessing/depGraph/LoopAnalysis.C
>Locally modified   LoopProcessing/depGraph/Makefile.am
>Locally modified   LoopProcessing/depGraph/TransDepGraph.C
>Locally modified   LoopProcessing/depGraph/TransDepGraph.h
>Locally modified   LoopProcessing/depInfo/DepEDD.C
>Locally modified   LoopProcessing/depInfo/DepInfo.C
>Locally modified   LoopProcessing/depInfo/DepInfo.h
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.C
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.h
>Locally modified   LoopProcessing/depInfo/DepInfoAnalImpl.C
>Locally modified   LoopProcessing/depInfo/DepInfoSet.C
>Locally modified   LoopProcessing/depInfo/DepRel.C
>Locally modified   LoopProcessing/depInfo/DepRel.h
>Locally modified   LoopProcessing/depInfo/DomainInfo.C
>Locally modified   LoopProcessing/depInfo/DomainInfo.h
>Locally modified   LoopProcessing/depInfo/Makefile.am
>Locally modified   LoopProcessing/depInfo/StmtDepAnal.C
>Locally modified   LoopProcessing/driver/BlockingAnal.h
>Locally modified   LoopProcessing/driver/FusionAnal.C
>Locally modified   LoopProcessing/driver/InterchangeAnal.C
>Locally modified   LoopProcessing/driver/LoopTransformOptions.C
>Locally modified   LoopProcessing/driver/LoopTransformOptions.h
>Locally modified   LoopProcessing/driver/Makefile.am
>Locally modified   LoopProcessing/driver/TransformComputation.C
>Locally modified   LoopProcessing/driver/TypedFusionImpl.C
>Locally modified   LoopProcessing/slicing/CompSlice.C
>Locally modified   LoopProcessing/slicing/CompSlice.h
>Locally modified   LoopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   LoopProcessing/slicing/CompSliceDepGraph.h
>Locally modified   LoopProcessing/slicing/CompSliceLocality.C
>Locally modified   LoopProcessing/slicing/CompSliceLocality.h
>Locally modified   LoopProcessing/slicing/CompSliceRegistry.h
>Locally modified   LoopProcessing/slicing/DependenceHoisting.C
>Locally modified   LoopProcessing/slicing/DynamicCompSlice.C
>Locally modified   LoopProcessing/slicing/Makefile.am
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   LoopProcessing/test/TestLoopProcessor.C
>Locally modified   LoopProcessing/test/rose_lufac.C
>Locally modified   LoopProcessing/test/rose_mm.C
>Locally modified   LoopProcessing/test/rose_tridvpk.C
>Locally modified   ProgramAnalysis/Makefile.am
>Locally modified   ProgramAnalysis/CFG/CFG.h
>Locally modified   ProgramAnalysis/CFG/CFGImpl.C
>Locally modified   ProgramAnalysis/CFG/CFGImpl.h
>Locally modified   ProgramAnalysis/CFG/CFGTest.C
>Locally modified   ProgramAnalysis/CFG/CFG_OA.C
>Locally modified   ProgramAnalysis/CFG/CFG_ROSE.C
>Locally modified   ProgramAnalysis/CFG/Makefile.am
>Locally modified   Projects/Makefile.am
>Locally modified   ROSETTA/Grammar/LocatedNode.code
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/src/grammarString.C
>Locally modified   src/unparser/unparse_format.C
>Locally modified   util/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      LoopProcessing/LoopTransformInterface.h
+Scheduled for add      LoopProcessing/driver/BlockingAnal.C
+Scheduled for add      LoopProcessing/driver/TransformAstTree.C
+Scheduled for add      LoopProcessing/driver/TransformAstTree.h
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/DataFlowAnalysis.C
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/DataFlowAnalysis.h
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/DataFlowTest.C
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/DefUseChain.C
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/DefUseChain.h
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/Makefile.am
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/ReachingDefinition.C
+Scheduled for add      ProgramAnalysis/dataflowAnalysis/ReachingDefinition.h
+Scheduled for add      ProgramAnalysis/valuePropagation/Makefile.am
+Scheduled for add      ProgramAnalysis/valuePropagation/ValueAnnot.C
+Scheduled for add      ProgramAnalysis/valuePropagation/ValueAnnot.h
+Scheduled for add      ProgramAnalysis/valuePropagation/ValuePropagate.C
+Scheduled for add      ProgramAnalysis/valuePropagation/ValuePropagate.h
+Scheduled for add      Projects/arrayOptimization/ArrayAnnot.C
+Scheduled for add      Projects/arrayOptimization/ArrayAnnot.h
+Scheduled for add      Projects/arrayOptimization/ArrayInterface.C
+Scheduled for add      Projects/arrayOptimization/ArrayInterface.h
+Scheduled for add      Projects/arrayOptimization/ArrayProcessor.C
+Scheduled for add      Projects/arrayOptimization/ArrayRewrite.C
+Scheduled for add      Projects/arrayOptimization/ArrayRewrite.h
+Scheduled for add      Projects/arrayOptimization/Makefile.am
+Scheduled for add      midend/Makefile.am
+Scheduled for add      midend/astUtil/Makefile.am
+Scheduled for add      midend/astUtil/annotation/AnnotCollect.C
+Scheduled for add      midend/astUtil/annotation/AnnotCollect.h
+Scheduled for add      midend/astUtil/annotation/AnnotDescriptors.C
+Scheduled for add      midend/astUtil/annotation/AnnotDescriptors.h
+Scheduled for add      midend/astUtil/annotation/AnnotExpr.C
+Scheduled for add      midend/astUtil/annotation/AnnotExpr.h
+Scheduled for add      midend/astUtil/annotation/AnnotIO.C
+Scheduled for add      midend/astUtil/annotation/AnnotIO.h
+Scheduled for add      midend/astUtil/annotation/AnnotStmt.h
+Scheduled for add      midend/astUtil/annotation/Makefile.am
+Scheduled for add      midend/astUtil/annotation/OperatorAnnotation.C
+Scheduled for add      midend/astUtil/annotation/OperatorAnnotation.h
+Scheduled for add      midend/astUtil/annotation/OperatorDescriptors.C
+Scheduled for add      midend/astUtil/annotation/OperatorDescriptors.h
+Scheduled for add      midend/astUtil/annotation/TypeAnnotation.C
+Scheduled for add      midend/astUtil/annotation/TypeAnnotation.h
+Scheduled for add      midend/astUtil/astInterface/AstInterface.C
+Scheduled for add      midend/astUtil/astInterface/AstInterface.h
+Scheduled for add      midend/astUtil/astInterface/CPPAstInterface.C
+Scheduled for add      midend/astUtil/astInterface/CPPAstInterface.h
+Scheduled for add      midend/astUtil/astInterface/CheckSymbolTable.C
+Scheduled for add      midend/astUtil/astInterface/CheckSymbolTable.h
+Scheduled for add      midend/astUtil/astInterface/Makefile.am
+Scheduled for add      midend/astUtil/astSupport/AnalysisInterface.h
+Scheduled for add      midend/astUtil/astSupport/Makefile.am
+Scheduled for add      midend/astUtil/astSupport/ProcessAstTree.C
+Scheduled for add      midend/astUtil/astSupport/ProcessAstTree.h
+Scheduled for add      midend/astUtil/astSupport/StmtInfoCollect.C
+Scheduled for add      midend/astUtil/astSupport/StmtInfoCollect.h
+Scheduled for add      midend/astUtil/symbolicVal/Makefile.am
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicBound.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicExpr.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicExpr.h
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicFind.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicMultiply.h
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicOperator.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicPlus.h
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicSelect.h
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicUnwrapCond.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicVal.C
+Scheduled for add      midend/astUtil/symbolicVal/SymbolicVal.h
+Scheduled for add      util/graphs/BaseGraphCreate.h
+Scheduled for add      util/graphs/BaseGraphTemp.h
+Scheduled for add      util/graphs/DGBaseGraphImpl.C
+Scheduled for add      util/graphs/DGBaseGraphImpl.h
+Scheduled for add      util/graphs/DGBaseGraphTemp.h
+Scheduled for add      util/graphs/Dump.C
+Scheduled for add      util/graphs/GraphDotOutput.h
+Scheduled for add      util/graphs/GraphGroup.h
+Scheduled for add      util/graphs/GraphInterface.h
+Scheduled for add      util/graphs/GraphScope.h
+Scheduled for add      util/graphs/GraphTemplate.h
+Scheduled for add      util/graphs/GraphUpdate.h
+Scheduled for add      util/graphs/IDGraphCreate.C
+Scheduled for add      util/graphs/IDGraphCreate.h
+Scheduled for add      util/graphs/IDGraphCreateTemp.h
+Scheduled for add      util/graphs/Makefile.am
+Scheduled for add      util/graphs/SCCAnalysis.C
+Scheduled for add      util/graphs/SCCAnalysis.h
+Scheduled for add      util/graphs/TransAnalysis.C
+Scheduled for add      util/graphs/TransAnalysis.h
+Scheduled for add      util/graphs/TypedFusion.C
+Scheduled for add      util/graphs/TypedFusion.h
+Scheduled for add      util/support/Adaptors.h
+Scheduled for add      util/support/BitVectorRepr.h
+Scheduled for add      util/support/CommandOptions.C
+Scheduled for add      util/support/CommandOptions.h
+Scheduled for add      util/support/CountRefHandle.h
+Scheduled for add      util/support/DAG.C
+Scheduled for add      util/support/DAG.h
+Scheduled for add      util/support/DirectedGraph.C
+Scheduled for add      util/support/DirectedGraph.h
+Scheduled for add      util/support/DoublyLinkedList.h
+Scheduled for add      util/support/FunctionObject.h
+Scheduled for add      util/support/IteratorCompound.h
+Scheduled for add      util/support/IteratorTmpl.h
+Scheduled for add      util/support/LatticeElemList.h
+Scheduled for add      util/support/Makefile.am
+Scheduled for add      util/support/Matrix.h
+Scheduled for add      util/support/ObserveObject.h
+Scheduled for add      util/support/PtrMap.h
+Scheduled for add      util/support/PtrSet.h
+Scheduled for add      util/support/SinglyLinkedList.h
+Scheduled for add      util/support/StreamIO.h
+Scheduled for add      util/support/TreeImpl.h
+Scheduled for add      util/support/const.h
+Scheduled for add      util/support/general.h
+Scheduled for add      util/support/union_find.h
********* Files Scheduled to be removed *********
-Scheduled for removal  ContainerParallelizer/CPAnalysis/UserSpec.h
-Scheduled for removal  LoopProcessing/AstInterface.C
-Scheduled for removal  LoopProcessing/computation/LoopTreeVarBound.h
-Scheduled for removal  LoopProcessing/driver/BreakupStatement.C
-Scheduled for removal  LoopProcessing/driver/PreTransformation.h
-Scheduled for removal  LoopProcessing/graphs/BaseGraphCreate.h
-Scheduled for removal  LoopProcessing/graphs/BaseGraphTemp.h
-Scheduled for removal  LoopProcessing/graphs/DGBaseGraphImpl.C
-Scheduled for removal  LoopProcessing/graphs/DGBaseGraphImpl.h
-Scheduled for removal  LoopProcessing/graphs/DGBaseGraphTemp.h
-Scheduled for removal  LoopProcessing/graphs/Dump.C
-Scheduled for removal  LoopProcessing/graphs/GraphDotOutput.h
-Scheduled for removal  LoopProcessing/graphs/GraphGroup.h
-Scheduled for removal  LoopProcessing/graphs/GraphInterface.h
-Scheduled for removal  LoopProcessing/graphs/GraphScope.h
-Scheduled for removal  LoopProcessing/graphs/GraphTemplate.h
-Scheduled for removal  LoopProcessing/graphs/GraphUpdate.h
-Scheduled for removal  LoopProcessing/graphs/IDGraphCreate.C
-Scheduled for removal  LoopProcessing/graphs/IDGraphCreate.h
-Scheduled for removal  LoopProcessing/graphs/IDGraphCreateTemp.h
-Scheduled for removal  LoopProcessing/graphs/Makefile.am
-Scheduled for removal  LoopProcessing/graphs/SCCAnalysis.C
-Scheduled for removal  LoopProcessing/graphs/SCCAnalysis.h
-Scheduled for removal  LoopProcessing/graphs/TransAnalysis.C
-Scheduled for removal  LoopProcessing/graphs/TransAnalysis.h
-Scheduled for removal  LoopProcessing/graphs/TypedFusion.C
-Scheduled for removal  LoopProcessing/graphs/TypedFusion.h
-Scheduled for removal  LoopProcessing/outsideInterface/AstInterface-sage.h
-Scheduled for removal  LoopProcessing/outsideInterface/AstInterface.h
-Scheduled for removal  LoopProcessing/outsideInterface/LoopTransformInterface.h
-Scheduled for removal  LoopProcessing/outsideInterface/Makefile.am
-Scheduled for removal  LoopProcessing/outsideInterface/general.h
-Scheduled for removal  LoopProcessing/support/Adaptors.h
-Scheduled for removal  LoopProcessing/support/CountRefHandle.h
-Scheduled for removal  LoopProcessing/support/DAG.C
-Scheduled for removal  LoopProcessing/support/DAG.h
-Scheduled for removal  LoopProcessing/support/DirectedGraph.C
-Scheduled for removal  LoopProcessing/support/DirectedGraph.h
-Scheduled for removal  LoopProcessing/support/DoublyLinkedList.h
-Scheduled for removal  LoopProcessing/support/FunctionObject.h
-Scheduled for removal  LoopProcessing/support/IteratorCompound.h
-Scheduled for removal  LoopProcessing/support/IteratorTmpl.h
-Scheduled for removal  LoopProcessing/support/LatticeElemList.h
-Scheduled for removal  LoopProcessing/support/Makefile.am
-Scheduled for removal  LoopProcessing/support/Matrix.h
-Scheduled for removal  LoopProcessing/support/ObserveObject.h
-Scheduled for removal  LoopProcessing/support/ProcessAstTree.h
-Scheduled for removal  LoopProcessing/support/ProcessLoopTree.h
-Scheduled for removal  LoopProcessing/support/PtrMap.h
-Scheduled for removal  LoopProcessing/support/PtrSet.h
-Scheduled for removal  LoopProcessing/support/SinglyLinkedList.h
-Scheduled for removal  LoopProcessing/support/TreeImpl.h
-Scheduled for removal  LoopProcessing/support/const.h
-Scheduled for removal  LoopProcessing/symbolicVal/Makefile.am
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicBound.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicCond.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicCond.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicContainVar.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicExpr.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicExpr.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicMultiply.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicOperator.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicOperator.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicPlus.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicSelect.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicUnwrapCond.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicVal.C
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicVal.h
-Scheduled for removal  LoopProcessing/symbolicVal/SymbolicVisitor.h
********* WARNINGS *********
********* ERRORS *********
	
2004-2-9 Dan Quinlan 0.7.2a
	* RECORD_TEMPLATES_IN_IL renamed to RECORD_TEMPLATE_STRINGS in
	  sage specific EDG/SAGE connection.
	* Fixed memory problems found with valgrind
	* Verified that EDG AST is still available so that Andreas's
	  data structure traversal mechanism can provide a display of both
	  the EDG and SAGE III ASTs from within a ROSE translator.
	* EXTRA_SOURCE_POSITIONS_IN_IL is an option in EDG 3.3 and has
	  been turned on and the extra information used so that the
	  source code position of expressions is now accurately recorded
	  in EDG and finally in SAGE III (useful for SvPablo).
	* Fixed use of #pragma (bug report from Andreas)
	* Repositioned SgPragmaStatement to be derived from SgDeclaration.
	* Fixed use of #pragma in scopes containing only declarations
	  (global scope, class definition scope, etc.).
	* Renamed SgPragmaStatement --> SgPragmaDeclaration
	* Removed Comment and CPP directive IR nodes from SAGE
	  (these were never used).
	* Runs cleanly through valgrind (except for memory leaks!)
	* Characterised what code generates islands of non-traversed AST:
	    class  tag { int declaration_not_visited; } X;
	    struct tag { int declaration_not_visited; } X;
	    union  tag { int declaration_not_visited; } X;
	  And the same types hidden in a typedef type ...
	    typedef class  tag { int declaration_not_visited; } X;
	    typedef struct tag { int declaration_not_visited; } X;
	    typedef union  tag { int declaration_not_visited; } X;
	  Details in ROSE/proposals/islandsOfUntraversedAST.txt.
	* fixed unparser to handle "typedef class tag { int x; } X;"
	  (keyword "class" was not previously output).
	* Fixed AST rewrite mechanism to permit use of StatementScope
	  (allowing direct insertion into scopes, missing previously).
	  Previously you had to be at a statement in the scope to insert
	  a statement into the same scope.  The current addition permits
	  a more intuative use of the insert mechanism within AST
	  rewrites.
	* Added Andreas' data structure processing work.  Though at the
	  moment it had to be commented out in the Makefile.am since it
	  caused a circular dependence in the Makefile system for ROSE.
	  The fix will be to move the AST_RewriteMechanism directory into
	  the ROSE/src directory (part of the original directory
	  reorganization) so the the dependence can be resolved in the
	  ordering of the directories in the ROSE/src/Makefile.am.  A
	  zero-fun nonsense detail that will be most likely fixed in 
	  the next release of ROSE (only a problem for the 
	  "gmake distcheck" rule, ...).
	* Added ROSE/proposals directory (part of new proposed directory
	  structure).  This directory is a place to collect documents
	  supporting future modifications to ROSE (new required features,
	  suggested changes, etc.).  Some documentation starts here and
	  is later moved into the more official documentation when it is
	  ready, sometimes even before it is ready :-).
	* Added test codes: test2004_09.C - test2004_17.C representing
	  some of the bugs fixed were fixed.
	* Fixed 2 bugs reported by Chadd (more difficult bug in in
	  test2004_13.C).
	* Using g++ -Wall -Wswitch-enum -Wswitch-default, fixed and
	  verified all switch statements in EDG/SAGE connection code
	  identify all cases (to prevent and detect new cases specific 
	  to EDG 3.3 from being used unexpectedly.  This caught many
	  subtle errors related to new IR nodes in EDG which the older
	  EDG/SAGE code was not aware of.  The Makefile.am in 
	  ROSE/src/frontend/EDG_SAGE_Connection details the use of
	  specialized options.  Complete listing can be found by using:
	  g++ -v --help (lots of specialized warnings to turn on to
	  support code maintance/development).
	* Added vararg support into AST (new SAGE III IR nodes)

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/TauMidTraversal.h
>Locally modified   AST_RewriteMechanism/inputProgram2.C
>Locally modified   AST_RewriteMechanism/midLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/prefixGeneration.C
>Locally modified   AST_RewriteMechanism/rewrite.h
>Locally modified   AST_RewriteMechanism/rewriteDebuggingSupport.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   AST_RewriteMechanism/tauProfiler.h
>Locally modified   AST_RewriteMechanism/tauProtos.h
>Locally modified   AST_RewriteMechanism/tauifyPreprocessor.C
>Locally modified   AST_RewriteMechanism/testReplacementStatements.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/AstSimpleProcessing.h
>Locally modified   AstProcessingLib/abstractcppgrammar.atg
>Locally modified   AstProcessingLib/sgnodec.hpp
>Locally modified   AstProcessingLib/sgnodee.hpp
>Locally modified   AstProcessingLib/sgnodep.cpp
>Locally modified   ContainerParallelizer/CPTransformation/BodyTransformationParser.C
>Locally modified   ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   QueryLibs/NodeQuery/nodeQuery.C
>Locally modified   QueryLibs/NodeQuery/nodeQuery.h
>Locally modified   ROSETTA/Grammar/Expression.code
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/src/expression.C
>Locally modified   ROSETTA/src/statement.C
>Locally modified   ROSETTA/src/support.C
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/Makefile.am
>Locally modified   SAGE/attachPreprocessingInfo.C
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/appendix.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/preprocessorDesign.tex
>Locally modified   docs/Rose/ProgramAnalysis/ProgramAnalysis.tex
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   msDevelopment/OmpTransformations/BodyTransformationParser.C
>Locally modified   msDevelopment/OmpTransformations/OmpLoopRATransformationParser.C
>Locally modified   src/Makefile.am
>Locally modified   src/transformationSupport.C
>Locally modified   src/utility_functions.C
>Locally modified   src/frontend/EDG/EDG_1.4/src/sage_gen_be.C
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/host_envir.h
>Locally modified   src/frontend/EDG/EDG_3.3/src/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/host_envir.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/il_alloc.c
>Locally modified   src/frontend/EDG/EDG_3.3/util/Makefile.am
>Locally modified   src/frontend/EDG/EDG_3.3/util/edg_prelink.c
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.C
>Locally modified   src/frontend/EDG_SAGE_Connection/debugging.h
>Locally modified   src/frontend/EDG_SAGE_Connection/displayTree.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sagePreInit.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sageSupport.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparse_type.C
>Locally modified   src/unparser/unparser.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AST_RewriteMechanism/rewriteDebuggingSupportTemplates.C
+Scheduled for add      dqDevelopmentDirectory/test2004_09.C
+Scheduled for add      dqDevelopmentDirectory/test2004_10.C
+Scheduled for add      dqDevelopmentDirectory/test2004_11.C
+Scheduled for add      dqDevelopmentDirectory/test2004_12.C
+Scheduled for add      dqDevelopmentDirectory/test2004_13.C
+Scheduled for add      dqDevelopmentDirectory/test2004_14.C
+Scheduled for add      dqDevelopmentDirectory/test2004_15.C
+Scheduled for add      dqDevelopmentDirectory/test2004_16.C
+Scheduled for add      dqDevelopmentDirectory/test2004_17.C
+Scheduled for add      src/roseExtensions/Makefile.am
+Scheduled for add      src/roseExtensions/dataStructureTraversal/ControlStructure.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/ControlStructure.h
+Scheduled for add      src/roseExtensions/dataStructureTraversal/GenGeneration.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/GenGeneration.h
+Scheduled for add      src/roseExtensions/dataStructureTraversal/GenGenerationNEWprintUnion.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/GenRepresentation.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/GenRepresentation.h
+Scheduled for add      src/roseExtensions/dataStructureTraversal/Makefile.am
+Scheduled for add      src/roseExtensions/dataStructureTraversal/dataStructureTest_1.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/exampleTest.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/helpFunctions.C
+Scheduled for add      src/roseExtensions/dataStructureTraversal/helpFunctions.h
+Scheduled for add      src/roseExtensions/dataStructureTraversal/main.C
+Scheduled for add      src/roseExtensions/databaseConnection/Makefile.am
+Scheduled for add      src/roseExtensions/highLevelGrammar/Makefile.am
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********
	
	

2004-1-20 Dan Quinlan 0.7.1a
	* Fixed infinite loop in EDG/SAGE connection caused when
	  processing some simple typedef statements (long standing bug).
	* Fixed AST Rewrite Mechanism to allow midlevel rewrite mechanism
	  to insert statements (from strings) into SgScopeStatements.
	  Previously we only supported top of scope, before, replace,
	  after, bottom of scope; but not into a statement which was a
	  scope.  This has been changed to permit the insertion of
	  statements into the top and bottom of the targeted scope
	  statement (not just the scope of the target scope statement).
	  The scope must now specificed explicitly for the midlevel insert
	  function.  "LocalScope" has been renamed "SurroundingScope" and
	  the scope of the target statement (if it is a SgScopeStatement
	  is named "StatementScope").
	* Better error reporting has been implemented for where the 
	  insert function can be applied (with suggested work arounds
	  reported).
	* A new function: 
	  bool
	    MidLevelRewrite<MidLevelInterfaceNodeCollection>::insertSupported 
	        ( SgStatement* astNode, 
	          MidLevelCollectionTypedefs::ScopeIdentifierEnum inputRelativeScope );
	  This function returns true if the IR node is supported as a
	  target for insert. There are a few nodes that are currently not
	  supported by insert (see below).

	  Notes (put into documentation):
	  There are several types of statements which the AST rewrite mechanism can not 
	  currently process.  Below we enumerate these and examplain why each is difficult 
	  or not currently possible.
	       1) Why we have to skip SgCaseOptionStmt statements.
	               Example of code in generated intermedate file for a SgCaseOptionStmt:
	               int GlobalScopePreambleStart;
	               int GlobalScopePreambleEnd;
	               int CurrentLocationTopOfScopeStart;
	               int CurrentLocationTopOfScopeEnd;
	               int CurrentLocationBeforeStart;
	               int CurrentLocationBeforeEnd;
	               int CurrentLocationReplaceStart;
	               case 0:{y++;break;}
	               int CurrentLocationReplaceEnd;
	               int CurrentLocationAfterStart;
	               int CurrentLocationAfterEnd;
	               int CurrentLocationBottomOfScopeStart;
	               int CurrentLocationBottomOfScopeEnd;
	          The problem is that marker declaration that appear after the SgCaseOptionStmt 
	          are included in the scope of the SgCaseOptionStmt while those that appear 
	          before it are not in the same scope.

	       2) SgDefaultOptionStmt (see reason #1 above).
	       3) SgCtorInitializerList
	          This case would have to generate special handling to be generated in the 
	          intermediate file and likely it would require special handling isolated 
	          from the AST.  Likely this case can be handled in the future with extra work.
	       4) SgFunctionParameterList (see reason #3 above).
	       5) SgClassDefinition
	          Since the SgClassDefinition is so structurally tied to the SgClassDeclaration 
	          it make more sense to process the SgClassDeclaration associated with the 
	          SgClassDefinition instead of the SgClassDefinition directly.  Presently the 
	          processing of the SgClassDefinition is not supported through any indirect 
	          processing of the SgClassDeclaration, this could be implemented in the future.
	       6) SgGlobal
	          This case is not implemented, it would require special handling, it might be 
	          implemented in the future.
	       7) SgBasicBlock used in a SgForStatement
	          Because of the declaration of the for loop index variable, this case would 
	          require special handling. This case could be implemented in the future.
	       8) SgBasicBlock used in a SgFunctionDefinition
	          Because of the declaration of the function parameter variable, this case would 
	          require special handling. This case could be implemented in the future.
	       9) SgBasicBlock used in a SgSwitchStatement
	          Example of code in generated intermedate file for a SgBasicBlock used in 
	          SgSwitchStatement:
	               int main()
	               { /* local stack #0 */
	               int x;
	               int y;
	               switch(x)
	               { /* local stack #1 */ 
	               int GlobalScopePreambleStart;
	               int GlobalScopePreambleEnd;
	               int CurrentLocationTopOfScopeStart;
	               int CurrentLocationTopOfScopeEnd;
	               int CurrentLocationBeforeStart;
	               int CurrentLocationBeforeEnd;
	               int CurrentLocationReplaceStart;
	               {case 0:{y++;break;}default:{y++;break;}}
	               int CurrentLocationReplaceEnd;
	               int CurrentLocationAfterStart;
	               int CurrentLocationAfterEnd;
	               int CurrentLocationBottomOfScopeStart;
	               int CurrentLocationBottomOfScopeEnd;
	               /* Reference marker variables to avoid compiler warnings */
	                  };     };
	          This is more difficult because the declaration markers must appear after 
	          the "{ /* local stack #1 */" but then the statement "{case 0:{y++;break;}default:{y++;break;}}"
	          cannot appear after a switch.  Likely it is not possible to fix this case due to the
	          design and constraints of the C++ language (design and limitations of the switch statement).
	          This is not a serious problem, it just means that the whole switch statement must
	          be operated upon instead of the block within the switch statement separately.
	* Added new tests codes and fixed bugs (test2004_0[4-8]) relating
	  to cycles found in the AST.
	* Fixed handling of redundent typedefs in the EDG/SAGE interface.
	  Legal in C++, but I think not legal in C(?).
	* Made EDG 3.3 the default. Removed --with-EDG_3.3 configure option
	  and made a --with-EDG_1.4 option to permit use of older version
	  of EDG (until it is removed).  Future fixes will only be done to
	  to the latest version of EDG and not EDG version 1.4.
	* Added new test codes (test2004_03-08).

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/highLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/inputProgram2.C
>Locally modified   AST_RewriteMechanism/midLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/nodeCollection.C
>Locally modified   AST_RewriteMechanism/nodeCollectionTemplates.C
>Locally modified   AST_RewriteMechanism/rewrite.h
>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
>Locally modified   AST_RewriteMechanism/rewriteDebuggingSupport.C
>Locally modified   AST_RewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   AST_RewriteMechanism/testMidLevelInterface.C
>Locally modified   AST_RewriteMechanism/testReplacementStatements.C
>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
>Locally modified   AST_RewriteMechanism/testRewriteReplacementPermutations.C
>Locally modified   AstProcessingLib/AstRestructure.C
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
>Locally modified   AstProcessingLib/AstTraversal.C
>Locally modified   EXAMPLES/Makefile.am
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/dataStructurePreprocessor.C
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.C
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   ROSETTA/Grammar/Cxx_GlobalDeclarations.macro
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/Grammar/Type.code
>Locally modified   ROSETTA/src/support.C
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/AstFixes.h
>Locally modified   TESTS/RunTests/A++Tests/Makefile.am
>Locally modified   TESTS/RunTests/P++Tests/Makefile.am
>Locally modified   docs/Rose/requirements.tex
>Locally modified   docs/Rose/AstRewrite/AstRewrite.tex
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   dqDevelopmentDirectory/test2001_06.C
>Locally modified   src/preprocessorSupport.C
>Locally modified   src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/fe_init.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/trans_unit.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/fe_init.c
>Locally modified   src/frontend/EDG/EDG_3.3/src/disp/trans_unit.c
>Locally modified   src/frontend/EDG_SAGE_Connection/Makefile.am
>Locally modified   src/frontend/EDG_SAGE_Connection/sageCommonSourceHeader.h
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_gen_be.C
>Locally modified   src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparser.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********


	
	
2004-1-09 Dan Quinlan 0.7.0a
	* Updated EDG frontend from version 1.4 to 3.3.  This absorbs ten
	  years of work on C++ and ten years of work on the EDG front-end
	  by the EDG guys (to whom we are very thankful).  This also
	  sets the stage for addressing robustness issues in C++
	  (templates, namespaces, etc.).  Use --with-EDG_3_3 on configure
	  command line to use new version.  Previous version is the
	  current default (will be changed after later).
	* The connection of EDG to SAGE III has been resigned and is 
	  separated into a separate directory.  this design leaves the EDG
	  code nearly in tact (except for some small changes which SAGE 
	  requires. All changes are marked in the code ("DQ (date): comment").
        * The SAGE/EDG connection code now compiler with g++ 3.3.2 without 
	  warnings (using -Wall, which turns on all warnings).  Many
	  subtle bugs were fixed by carefully fixing all the warnings!
	* Some progress made toward new directory structure.  New
	  directories added in locations consistant with new directory
	  structure design. All EDG directories moved to ROSE/src/frontend/EDG.
	  More work to actually move existing directories will be 
	  done as part of a special checking to JUST redo the directory 
	  ROSE structure (later).
	* ROSE/src/rose.C was moved and renamed ROSE/TESTS/testTranslator.C
	  It was only used for tests, so it was put into the TESTS
	  directory; and the dependences of executable on libraries
	  didn't permit any executables (which required all libraries) to
	  be build in the ROSE/src directory. Updates from Markus were handled.
	* Fixed Makefile.am files in ROSE/TESTS subdirectories to call 
	  new ROSE/TESTS/testTranslator instead of RSE/src/rose.
	* Use of GNU g++ 3.x compiler determined at configure time and
	  use of gnu headers triggered automatically.  So
	  --with-GNU_HEADERS configure optin is no longer required when
	  using gnu g++ 3.x compilers.  Use of gnu g++ 2.96 will use the
	  constructed setof header files.  Other compiler will use there
	  own constructed set of header files as well.  
	* Prefix generation now assumes a normalized AAST in the sense
	  that member function are declared in their class and need not be
	  redundently declared outside of there class (which is not
	  legal C++ code).  Prefix generation now detects member function
	  declarations in global scope and skips them.
	* Removed calls to algo.h in multiple files of the
	  AST_RewriteMechanism directory.
	* Added functions to display parts of the EDG AST (debugging.C).
	* Cleaned up (removed dead code) from parts of EDG and
	  EDG_SAGE_Connection.
	* Fixed bug in sidlFunction.C which happens only with new version
	  of EDG (due to the normalized AST).
	* Updated some database files before Nils left (12/19/2003).
	* Fixed g++ warnings in ROSE/ROSETTA/Grammar code files.
	* Made several of ROSETTA functionsuse strings (start of
	  conversion from char* to string useage within ROSETTA.
	* Fixed usage of system header files to correct select
	  between <name.h> and <name> for header files.
	* Cleaned up code which g++ -Wall complained about through out
	  ROSE.
	* Added output of mysql requirements to SCRIPTS/cvschk.
	* Updated documentation on Design of ROSE within ROSE manual.
	  (Suggested/Inspired by Bjarne).
	* Added test code to ROSE/dqDevelopmentDirectory directory.
	* Modified rewrite mechanism to name intermediate files using the
	  original source file name plus and unique number for each
	  iteration. This permits use of make -j in testing.
	* Fixed use of algo.h in ROSE/util/string_functions.C

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
mysql (requires g++ 3.2.2)/usr/casc/overture/MySQL/MySQL_Install/bin/mysql  Ver 12.22 Distrib 4.0.17, for intel-linux (i686)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/nodeCollection.C
>Locally modified   AST_RewriteMechanism/nodeCollectionTemplates.C
>Locally modified   AST_RewriteMechanism/prefixGeneration.C
>Locally modified   AST_RewriteMechanism/rewrite.h
>Locally modified   AST_RewriteMechanism/rewriteAccumulatedAttribute.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
>Locally modified   AST_RewriteMechanism/testDeclarationPrefixGeneration.C
>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
>Locally modified   AstProcessingLib/AstTests.h
>Locally modified   EDG/src/Makefile.am
>Locally modified   EDG/src/debugging.C
>Locally modified   EDG/src/debugging.h
>Locally modified   EDG/src/sageCommonSourceHeader.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/AccessPatternPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/AstCopyReplTester/Makefile.am
>Locally modified   ExamplePreprocessors/BabelPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
>Locally modified   ExamplePreprocessors/DOTGenerator/Makefile.am
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/DefaultPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/PDFGenerator/Makefile.am
>Locally modified   ExamplePreprocessors/SvPabloPreprocessor/Makefile.am
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   ProgramAnalysis/CFG/Makefile.am
>Locally modified   Projects/DataBase/DatabaseGraph.h
>Locally modified   Projects/DataBase/Makefile.am
>Locally modified   Projects/DataBase/TableAccess.h
>Locally modified   Projects/DataBase/TableAccessMacros.h
>Locally modified   Projects/DataBase/createTableAccessMacros.pl
>Locally modified   Projects/HighLevelGrammars/Makefile.am
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/Grammar/Type.code
>Locally modified   ROSETTA/src/CxxGrammarMetaProgram.C
>Locally modified   ROSETTA/src/Makefile.am
>Locally modified   ROSETTA/src/addNonTerminal.C
>Locally modified   ROSETTA/src/grammar.C
>Locally modified   ROSETTA/src/grammar.h
>Locally modified   ROSETTA/src/grammarString.C
>Locally modified   ROSETTA/src/grammarString.h
>Locally modified   ROSETTA/src/grammarTreeNode.C
>Locally modified   ROSETTA/src/node.C
>Locally modified   ROSETTA/src/nonTerminalList.C
>Locally modified   ROSETTA/src/nonterminal.C
>Locally modified   ROSETTA/src/terminal.C
>Locally modified   ROSETTA/src/terminal.h
>Locally modified   ROSETTA/src/terminalList.C
>Locally modified   ROSETTA/src/terminalList.h
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/attachPreprocessingInfo.C
>Locally modified   SAGE/rose_attributes_list.C
>Locally modified   SAGE/sage3.h
>Locally modified   SCRIPTS/cvschk
>Locally modified   TESTS/Makefile.am
>Locally modified   TESTS/CompileTests/A++Code/Makefile.am
>Locally modified   TESTS/CompileTests/A++Tests/Makefile.am
>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
>Locally modified   TESTS/CompileTests/OvertureCode/Makefile.am
>Locally modified   TESTS/CompilerOptionsTests/A++Code/Makefile.am
>Locally modified   config/EDG.m4
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/create_system_headers
>Locally modified   config/support-mysql.m4
>Locally modified   docs/Rose/designOfRose.tex
>Locally modified   docs/Rose/ProgramAnalysis/ProgramAnalysis.tex
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   dqDevelopmentDirectory/test.C
>Locally modified   dqDevelopmentDirectory/test2001_01.C
>Locally modified   dqDevelopmentDirectory/test2001_06.C
>Locally modified   src/Makefile.am
>Locally modified   src/utility_functions.C
>Locally modified   src/unparser/unparse_format.h
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparser.h
>Locally modified   tutorial/database/Makefile.am
>Locally modified   tutorial/database/databasegraph_example.C
>Locally modified   util/string_functions.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      ROSE_RESEARCH_PAPERS.tar.gz
+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelTest_3.C
+Scheduled for add      PDF/testpdf.C
+Scheduled for add      ProgramAnalysis/CallGraphAnalysis/Callgraph.C
+Scheduled for add      ProgramAnalysis/CallGraphAnalysis/Callgraph.h
+Scheduled for add      ProgramAnalysis/CallGraphAnalysis/Classhierarchy.C
+Scheduled for add      ProgramAnalysis/CallGraphAnalysis/Classhierarchy.h
+Scheduled for add      ProgramAnalysis/CallGraphAnalysis/callgraph_example.C
+Scheduled for add      Projects/DataBase/simplecallgraph_testprogram.C
+Scheduled for add      Projects/DataStructureGraphing/linkedListTestCode.C
+Scheduled for add      SCRIPTS/printConstructors
+Scheduled for add      TESTS/testTranslator.C
+Scheduled for add      docs/Rose/HighLevelGrammars/ExampleUserCode.code
+Scheduled for add      docs/Rose/HighLevelGrammars/GeneratedAbstractionCode.code
+Scheduled for add      docs/Rose/HighLevelGrammars/GeneratedAbstractionRecognitionCode.code
+Scheduled for add      docs/Rose/HighLevelGrammars/GeneratedLibraryCode.code
+Scheduled for add      dqDevelopmentDirectory/test2004_01.C
+Scheduled for add      dqDevelopmentDirectory/test2004_02.C
+Scheduled for add      dqDevelopmentDirectory/testNotEqualBut.C
+Scheduled for add      dqDevelopmentDirectory/test_new_edg.C
+Scheduled for add      src/frontend/Makefile.am
+Scheduled for add      src/frontend/EDG/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/README
+Scheduled for add      src/frontend/EDG/EDG_1.4/documentation.docs
+Scheduled for add      src/frontend/EDG/EDG_1.4/save.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/stamp-h.in
+Scheduled for add      src/frontend/EDG/EDG_1.4/bin/eccp
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/README
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/admin.tex
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/c_deproto.tex
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/c_gen_be.aux
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/plm.log
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/plm.ps
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/plm.toc
+Scheduled for add      src/frontend/EDG/EDG_1.4/doc/psit
+Scheduled for add      src/frontend/EDG/EDG_1.4/errinfo/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/Changes
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/assert.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/ctype.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/errno.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/exception.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/float.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/iso646.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/limits.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/locale.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/math.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/new.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/setjmp.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/signal.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/stdarg.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/stddef.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/stdexcept.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/stdio.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/stdlib.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/string.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/time.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/include/typeinfo.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/Changes
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/Makefile
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/array_del.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/array_new.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/array_nonew.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/array_pdel.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/array_pnew.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/bad_alloc.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/basics.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/config.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/defines.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/delete.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/dtor_list.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/dtor_list.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/edg_exit.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/edg_exit.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/eh.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/eh_util.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/exception.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/exit.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/lib_eccp
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/main.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/main.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/memzero.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/munch_ctors.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/munch_dtors.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/new.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/newnothrow.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/placedel.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/placenew.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/pure_virt.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/rtti.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/rtti.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/runtime.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/set_new.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/static_init.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/static_init.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/stdexcept.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/throw.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/typeinfo.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/vars.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/vec_cctor.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/vec_newdel.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/vec_newdel.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/lib_src/vtbl.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/c_deproto.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/dettarg.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/mk_errinfo.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/misc/t.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/BUG_FIX_unnamedFieldsInStructs.txt
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Changes
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Makefile.ccpp
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Makefile.original
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/Patches
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/alternativeEdgSageInterface.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/b00_sage_gen_be.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/basic_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/basics.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/c_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/c_gen_be.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/cfe.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/class_decl.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/class_decl.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/cmd_line.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/cmd_line.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/const_ints.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/const_ints.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/cp_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/cp_gen_be.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/debug.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/debug.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/debugging.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/debugging.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decl_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decl_inits.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decl_inits.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decl_spec.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decl_spec.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/declarator.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/declarator.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decls.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/decls.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/def_arg.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/def_arg.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/defines.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/defines.h.proto
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/disambig.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/disambig.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/displayTree.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/displayTree.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/edg.cfg
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/err_codes.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/err_data.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/error.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/error.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/error_msg.txt
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/error_tag.txt
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/expr.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/expr.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/expr_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/exprutil.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/exprutil.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/fe_common.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/fe_init.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/fe_init.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/fe_wrapup.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/fe_wrapup.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/float_pt.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/float_pt.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/folding.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/folding.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/func_def.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/func_def.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/host_envir.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/host_envir.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_alloc.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_alloc.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_def.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_display.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_display.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_file.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_read.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_read.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_to_str.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_to_str.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_walk.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_walk.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_write.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/il_write.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/inline.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/inline.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lang_feat.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/layout.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/layout.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lexical.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lexical.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/literals.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/literals.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lookup.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lookup.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_eh.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_eh.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_il.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_il.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_init.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_init.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_name.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/lower_name.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/macro.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/macro.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/mem_manage.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/mem_manage.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/mem_tables.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/olddefines.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/overload.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/overload.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/patch1
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/pch.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/pch.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/pragma.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/pragma.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/preproc.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/preproc.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageCommonSourceHeader.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageFunctionPrototypes.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageGlobalVar.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageInlineFunctions.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageMacros.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sagePreInit.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sagePreInit.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sagePreInitGlobalVar.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageSupport.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageSupport.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sageTypedefs.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_cfe.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_debug.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_gen_be.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_gen_be.C.failingTest2003_05.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_gen_be.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_il_to_str.C
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sage_il_to_str.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/save-preproc.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/scope_stk.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/scope_stk.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sgidefines.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/statements.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/statements.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sundefines.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/symbol_ref.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/symbol_ref.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/symbol_tbl.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/symbol_tbl.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sys_predef.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/sys_predef.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/targ_def.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/target.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/target.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/templates.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/templates.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/types.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/types.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/version.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/src/walk_entry.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/Changes
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/decode.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/decode.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/edg_decode.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/edg_munch.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/edg_munch.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/edg_prelink.c
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/edg_prelink.h
+Scheduled for add      src/frontend/EDG/EDG_1.4/util/getopt.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_3.3/Makefile.modifiedToCompileOnLinux
+Scheduled for add      src/frontend/EDG/EDG_3.3/Makefile.original
+Scheduled for add      src/frontend/EDG/EDG_3.3/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/bin/eccp
+Scheduled for add      src/frontend/EDG/EDG_3.3/bin/edgcpdisp
+Scheduled for add      src/frontend/EDG/EDG_3.3/bin/edgcpfe
+Scheduled for add      src/frontend/EDG/EDG_3.3/doc/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/doc/plm.pdf
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/Changes
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/cxxabi.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/exception.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/exception.stdh
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/new.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/new.stdh
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/stdexcept.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/stdexcept.stdh
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/typeinfo.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/include/typeinfo.stdh
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib/edg_decode
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib/edg_munch
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib/edg_prelink
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/Changes
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/Makefile
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_del.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_new.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_nodel.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_nonew.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_pdel.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/array_pnew.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/bad_alloc.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/basics.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/c99_complex.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/config.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/defines.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/delete.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/delnothrow.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/dtor_list.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/dtor_list.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/edg_exit.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/edg_exit.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/eh.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/eh_util.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/error.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/error.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/exception.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/exit.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/guard.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/lib_eccp
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/main.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/main.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/memzero.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/memzero.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/munch_ctors.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/munch_dtors.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/new.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/newhandler.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/newnothrow.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/placedel.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/placenew.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/pure_virt.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/rtti.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/rtti.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/runtime.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/set_new.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/static_init.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/static_init.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/stdexcept.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/throw.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/typeinfo.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/vars.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/vec_cctor.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/vec_newdel.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/vec_newdel.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/lib_src/vtbl.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/Makefile.original
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/c_deproto.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/dettarg.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/dettarg.out
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/lldef
+Scheduled for add      src/frontend/EDG/EDG_3.3/misc/mk_errinfo.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/sample_edg_eccp_config/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/sample_edg_eccp_config/edg_eccp_config.linux
+Scheduled for add      src/frontend/EDG/EDG_3.3/sample_edg_eccp_config/edg_eccp_config.macosx
+Scheduled for add      src/frontend/EDG/EDG_3.3/sample_edg_eccp_config/edg_eccp_config.solaris
+Scheduled for add      src/frontend/EDG/EDG_3.3/sample_edg_eccp_config/make_g++_incl_paths
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/Changes
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/Makefile
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/README
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/attribute.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/attribute.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/basic_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/basics.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/c_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/c_gen_be.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/cfe.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/class_decl.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/class_decl.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/cmd_line.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/cmd_line.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/const_ints.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/const_ints.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/cp_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/cp_gen_be.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/debug.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/debug.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decl_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decl_inits.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decl_inits.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decl_spec.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decl_spec.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/declarator.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/declarator.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decls.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/decls.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/def_arg.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/def_arg.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.hpux
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.linux
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.macosx
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.proto
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.solaris
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/defines.h.win32
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disambig.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disambig.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edgcpfe
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/err_codes.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/err_data.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/error.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/error.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/error_msg.txt
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/error_tag.txt
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/expr.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/expr.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/expr_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/exprutil.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/exprutil.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/extasm.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/extasm.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_common.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_init.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_init.c.b00
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_init.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_wrapup.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fe_wrapup.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/fixupForSageTargets.txt
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/float_pt.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/float_pt.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/folding.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/folding.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/func_def.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/func_def.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/host_envir.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/host_envir.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/host_util.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_alloc.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_alloc.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_def.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_display.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_display.c.b00
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_display.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_file.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_read.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_read.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_to_str.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_to_str.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_walk.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_walk.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_write.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/il_write.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/inline.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/inline.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lang_feat.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/layout.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/layout.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lexical.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lexical.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lint.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/literals.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/literals.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lookup.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lookup.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_c99.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_c99.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_eh.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_eh.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_hdrs.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_il.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_il.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_init.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_init.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_name.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/lower_name.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/macro.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/macro.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/mem_manage.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/mem_manage.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/mem_tables.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/ms_attrib.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/ms_attrib.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/msinfo
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/overload.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/overload.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/pch.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/pch.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/pragma.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/pragma.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/preproc.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/preproc.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/scope_stk.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/scope_stk.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/src_seq.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/src_seq.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/statements.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/statements.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/symbol_ref.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/symbol_ref.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/symbol_tbl.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/symbol_tbl.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/sys_predef.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/sys_predef.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/targ_def.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/target.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/target.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/templates.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/templates.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_copy.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_copy.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_corresp.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_corresp.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_unit.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/trans_unit.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/types.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/types.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/version.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/walk_entry.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/Makefile
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/attribute.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/c_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/cfe.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/class_decl.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/cmd_line.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/const_ints.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/const_ints.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/cp_gen_be.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/debug.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/debug.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/decl_inits.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/decl_spec.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/declarator.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/decls.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/def_arg.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/disambig.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/edgcpdisp
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/error.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/error.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/expr.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/exprutil.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/extasm.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/fe_init.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/fe_wrapup.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/float_pt.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/float_pt.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/folding.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/func_def.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/host_envir.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/host_envir.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_alloc.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_display.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_display.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_read.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_read.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_to_str.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_to_str.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_walk.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_walk.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/il_write.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/inline.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/layout.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lexical.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/literals.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lookup.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lower_c99.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lower_eh.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lower_il.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lower_init.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/lower_name.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/macro.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/mem_manage.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/mem_manage.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/ms_attrib.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/overload.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/pch.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/pragma.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/preproc.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/scope_stk.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/src_seq.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/statements.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/symbol_ref.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/symbol_tbl.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/sys_predef.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/target.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/target.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/templates.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/trans_copy.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/trans_corresp.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/trans_unit.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/types.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/disp/types.o
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edg_defines/defines.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edg_defines/defines_linux.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edg_defines/defines_macosx.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edg_defines/defines_solaris.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/src/edg_defines/defines_win32.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/Changes
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/Makefile.am
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/Makefile.original
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/Makefile.pcc
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/decode.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/decode.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/edg_decode.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/edg_munch.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/edg_munch.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/edg_prelink.c
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/edg_prelink.h
+Scheduled for add      src/frontend/EDG/EDG_3.3/util/getopt.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/EDG_SAGE_InterfaceDesign.txt
+Scheduled for add      src/frontend/EDG_SAGE_Connection/Makefile.am
+Scheduled for add      src/frontend/EDG_SAGE_Connection/alternativeEdgSageInterface.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/debugging.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/debugging.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/displayTree.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/displayTree.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/edgBackEnd.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/edgBackEnd.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/edgMacros.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageCommonSourceHeader.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageFunctionPrototypes.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageGlobalVar.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageInlineFunctions.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageMacros.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageNameSupport.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageNameSupport.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sagePreInit.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sagePreInit.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sagePreInitGlobalVar.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageSupport.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageSupport.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sageTypedefs.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_cfe.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_debug.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_gen_be.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_gen_be.h
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_il_to_str.C
+Scheduled for add      src/frontend/EDG_SAGE_Connection/sage_il_to_str.h
+Scheduled for add      tutorial/blockingTutorial/rewriteExample1.C
+Scheduled for add      tutorial/blockingTutorial/rewriteExample2.C
+Scheduled for add      tutorial/blockingTutorial/rewriteExample3.C
+Scheduled for add      tutorial/blockingTutorial/rewriteTestprog1_small.c
+Scheduled for add      tutorial/blockingTutorial/rewriteTestprog2_scopes.c
+Scheduled for add      tutorial/blockingTutorial/rewriteTestprog3_loop.c
+Scheduled for add      tutorial/blockingTutorial/rewriteTestprog4_moreloops.c
+Scheduled for add      tutorial/blockingTutorial/tutorial.tex
+Scheduled for add      tutorial/database/simplecallgraphTestProgram.c
********* Files Scheduled to be removed *********
-Scheduled for removal  src/rose.C
********* WARNINGS *********
********* ERRORS *********


2003-12-19 Markus Schordan 0.6.8a
	* deactivated the use of a visit flag in the traversal.
	* eliminated all cycles in the AST traversal (which occur 
	  without visit flag)
        * added cycle test to AstTests (class AstCycleTest)
	* added option -I<PATH> to cpp2ps to allow an include path.
	* added function 'generate' to AstDOTGeneration to generate dotoutput
	  for the whole AST (input file and include files).

	* fixed LoopProcessing/AstInterface.C because it was using the
	  SAGE interface to modify the AST which introduces a cycle.
	  Cycles cause infinite recursions of the traversal.

	  The following fix was applied:
	  // to fix everything except parent pointers
          #include "AstTraversal.h"
          #include "AstFixes.h"
          ...
	  // perform AST fixes on an AST (which was not created by
	     using the rewrite system, e.g. by using the SAGE interface only)
          subTemporaryAstFixes(node);
          // perform cycle test to make sure no cycle exists
	  // If a cycle is found it is printed. (can be used for testing)
          AstCycleTest cycTest;
          cycTest.traverse(r);

	* fixed ROSE/ExamplePreprocessors/DataStructurePreprocessor because
	  it was traversing an AST subtree in a type which is not fixed
	  by the AstFixes.C

      	* added OmpPragmaParser yacc-grammar 
	  (not integrated in configuration)

********* TESTED with **************
automake (GNU automake) 1.7.7
autoconf (GNU Autoconf) 2.57
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   AstProcessingLib/AstDOTGeneration.C
>Locally modified   AstProcessingLib/AstDOTGeneration.h
>Locally modified   AstProcessingLib/AstProcessing.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/AstSimpleProcessing.h
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
>Locally modified   AstProcessingLib/AstTests.C
>Locally modified   AstProcessingLib/Makefile.am
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/dataStructurePreprocessor.C
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.C
>Locally modified   LoopProcessing/AstInterface.C
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   MSTL/TreeTraversal.C
>Locally modified   MSTL/TreeTraversal.h
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/AstFixes.h
>Locally modified   msDevelopment/Makefile.am
>Locally modified   msDevelopment/mscomp.C
>Locally modified   src/roseTranslators.C
>Locally modified   tools/cpp2ps
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AstProcessingLib/AstTraversal.C
+Scheduled for add      OmpPragmaParser/Makefile
+Scheduled for add      OmpPragmaParser/ompparser.l
+Scheduled for add      OmpPragmaParser/ompparser.txt
+Scheduled for add      OmpPragmaParser/ompparser.y
+Scheduled for add      msDevelopment/onefileonly.C
	
2003-12-07 Dan Quinlan 0.6.7a
	* Added vector<bool> to replace enum value that used each bit as a
	  flag and needed more flags (bits) than permitted in a long
	  integer (32 bit).  Version 3.x of g++ does not permit long
	  long enum values (only long enum values).  So a vector<bool>
	  was used to in place of the long enum value in the
	  SgUnparse_Info object.
	* Added "using std::xxx" statements to Nil's dotgl visualization
	  code. Comments added in code to identify added statements. 
	  Still can't compile dotgl, likely because FLTK and GraphViz
	  need to be compiled using the 3.x compiler.
	* Fixed numerous errors so that ROSE now runs cleanly with
	  Valgrind.
	* Cleaned up compilation with -Wall (all warnings) with gnu 3.x 
	  compilers for header files generally and within the 
	  AST_RewriteMechanism directory. Compiles with no warnings.
	
********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/prefixGeneration.C
>Locally modified   AST_RewriteMechanism/rewriteHighLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
>Locally modified   Projects/HighLevelGrammars/nodeAndEdgeTypes.h
>Locally modified   Projects/HighLevelGrammars/overloadedOperatorRepresentation.C
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/src/grammar.C
>Locally modified   ROSETTA/src/support.C
>Locally modified   src/roseIndependentSupport/visualization/dotvisualizer.cpp
>Locally modified   src/roseIndependentSupport/visualization/dotvisualizer.h
>Locally modified   src/roseIndependentSupport/visualization/glcodegen.h
>Locally modified   src/roseIndependentSupport/visualization/graphinfo.cpp
>Locally modified   src/roseIndependentSupport/visualization/graphinfo.h
>Locally modified   src/roseIndependentSupport/visualization/main.cpp
>Locally modified   src/roseIndependentSupport/visualization/vizgroup.h
>Locally modified   src/unparser/unparser.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********
	
2003-12-06 Dan Quinlan 0.6.6a
	* Removed CC++ support from SAGE III.  This was the most
	  significant change to EDG made by the original SAGE developers
	  and clears the way for updates to the new vrsion of EDG with
	  minimal changes to EDG directly.  This also fixed a mysterious
	  memory problem that caused unexplainable EDG compiler error
	  messages (when invoking the EDG front-end multiple times as
	  required for the rewrite mechanism).  This problem was
	  difficult to identify because Valgrind would execute to
	  program without error, but without Valgrind we would get the
	  error.
	* This version uses an idea from Markus for a test code for the
	  AST Rewrite Mechanism.  A test code which replaces every
	  statement of the input problem with the unparsed string
	  representing the original statement.  This is a particularly
	  difficult test code and forced a lot of internal work within
	  the rewrite mechanism to handle special cases that occure
	  within C++.  Bugs found using this test were fixed in the
	  AST Rewrite Mechanism.
	* Fixed SgStatement::get_scope() member function (see
	  implementation for comments).
	* Fixed EDG/SAGE connection code so that member declarations only
	  have a valid function definition if they are associated with a
	  member function that is is defined (same as for global
	  functions).  This reduces the requirement for the AST Fixups
	  for member function declarations (I think).  Also the symbols
	  of member functions now point to the correct function
	  declarations as opposed to dummy ones (which are still build for
	  temporary use until the associated function definition is
	  finally seen).  Currently fails with TESTS/CompileTests/A++Code/domain.C
	* Fixed EDG/SAGE interface code to handle cases in switch
	  statements that declare variables but don't have explcit "{}"
	  blocks defined.  This was a problem for code generated within 
	  the rewrite mechanism.
	* Added Nils Thuerey's database (MySQL) connection.
	* Added Nils Thuerey's visualization (dotgl) tool.
	* Added Nils Thuerey's graphics directory (already depricated code
	  in favor of using the Boost graph library) which uses classes 
	  defined in the STL Components book.  
	* Fixed ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
	  to not access the SgFunctionDefinition of a
	  SgMemberFunctionDeclaration since it is not a NULL pointer
	  if the declaration is not associated with the definition.
	* Added member function to add options to graph nodes in 
	  MSTL/DOTGeneration.C.
	* Added assers for tests of pointers returned from new to
	  MSTL/DOTRepresentation.C.
	* Fixed EDG/SAGE interface so that test of
	  SgMemberFunctionDeclaration is no longer required in 
	  SAGE/AstFixes.C.  Modified SAGE/AstFixes.C to make add
	  assertion that the fixup is not required.
	* Fixed unparser to be more strict in unparsing 
	  SgConstructorinitializer (asserts when need_name is 
	  required more strictly than before and forced mods to
	  the EDG/SAGE interface to get the need_name flag set properly.
	  Part of gneral fixes to function and member function declaration
	  handling (above).
	* Added enum value to SgUnparseInfo to permit skipping the basic
	  block when unparsing.  This supports the generation of
	  specialized code supporting the prefix generation for the
	  rewrite mechanism.
	* Had to add long long values to enum (now 64 bit). and had to
	  make the value holding the enums also "long long int".
	* Added enhansed support for prefix generation (no generating the 
	  control structure within the prefix so that "cases" will
	  properly compile within switch statements, and for loops will be
	  declared showing all index declarations.
	* Added support for prefix to be optionally generated starting at
	  the position before the target statement so that if the current
	  statement is a declaration then it can't be included twice if it
	  is added again (replaced with itself, as in test code).
	* Added dotgenLetter to permit dot graphs to be formatted onto a
	  simple page (using -Gsize="7.5,10").
	* Added reference to dependence on .cvsrc file in README
	  we assume use of .cvsrc file specifying "update -P -d" and 
	  "checkout -P" (also in ~dquinlan/.cvsrc).
	* Modified unparser to use SkipBasicBlock() functions to control
	  unparsing of the badies of SgForStmt and SgSwitchStmt as part of
	  support for generating greater context within the prefix (for
	  support of the AST Rewrite Mechanism).
	* Added configure commandline options:
	     --with-MySQL=PATH     Specify the prefix where MySQL & MySQL++ is installed
	     --with-MySQL_server=MACHINE_NAME      Specify the MySQL database server to be used
	     --with-MySQL_username=USER_NAME       Specify the MySQL username to be used
	     --with-MySQL_password=PASSWORD        Specify the MySQL password to be used
	     --with-MySQL_database_name=DATABASE_NAME      Specify the MySQL database name to be used
	     --with-FLTK_include=PATH      Specify the prefix where FLTK include files is installed
	     --with-FLTK_libs=PATH Specify the prefix where FLTK libraries are installed
	     --with-GraphViz_include=PATH  Specify the prefix where GraphViz include files are installed
	     --with-GraphViz_libs=PATH     Specify the prefix where GraphViz libraries are installed

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   Makefile.am
>Locally modified   README
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/highLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/inputProgram1.C
>Locally modified   AST_RewriteMechanism/inputProgram2.C
>Locally modified   AST_RewriteMechanism/lowLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/midLevelRewriteInterface.h
>Locally modified   AST_RewriteMechanism/nodeCollection.C
>Locally modified   AST_RewriteMechanism/prefixGeneration.C
>Locally modified   AST_RewriteMechanism/rewrite.h
>Locally modified   AST_RewriteMechanism/rewriteHighLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteLowLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterface.C
>Locally modified   AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
>Locally modified   AstProcessingLib/AstClearVisitFlags.C
>Locally modified   AstProcessingLib/AstDOTGeneration.C
>Locally modified   AstProcessingLib/AstDOTGeneration.h
>Locally modified   EDG/src/defines.h
>Locally modified   EDG/src/expr.c
>Locally modified   EDG/src/il_def.h
>Locally modified   EDG/src/overload.c
>Locally modified   EDG/src/sagePreInit.C
>Locally modified   EDG/src/sageSupport.C
>Locally modified   EDG/src/sage_gen_be.C
>Locally modified   EDG/src/sage_gen_be.h
>Locally modified   EDG/src/types.c
>Locally modified   ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
>Locally modified   MSTL/DOTGeneration.C
>Locally modified   MSTL/DOTGeneration.h
>Locally modified   MSTL/DOTRepresentation.C
>Locally modified   Projects/DataBase/DatabaseGraph.h
>Locally modified   Projects/DataBase/Makefile.am
>Locally modified   Projects/DataBase/testDataBase.C
>Locally modified   Projects/HighLevelGrammars/AbstractionAttribute.h
>Locally modified   Projects/HighLevelGrammars/Makefile.am
>Locally modified   Projects/HighLevelGrammars/highLevelGrammarGenerator.C
>Locally modified   ROSETTA/Grammar/Common.code
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/Grammar/grammarIsClassNameFunctionDefinitionMacros.macro
>Locally modified   ROSETTA/src/statement.C
>Locally modified   ROSETTA/src/support.C
>Locally modified   SAGE/AstFixes.C
>Locally modified   TESTS/CompileTests/A++Tests/Makefile.am
>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
>Locally modified   config/support-mysql.m4
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   src/Makefile.am
>Locally modified   src/roseTranslators.C
>Locally modified   src/utility_functions.C
>Locally modified   src/utility_functions.h
>Locally modified   src/unparser/modified_sage.C
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AST_RewriteMechanism/inputProgram3.C
+Scheduled for add      AST_RewriteMechanism/testRemoveStatements.C
+Scheduled for add      AST_RewriteMechanism/testReplacementStatements.C
+Scheduled for add      Projects/DataBase/check_database.C
+Scheduled for add      Projects/HighLevelGrammars/AbstractionAttribute.C
+Scheduled for add      Projects/HighLevelGrammars/nodeAndEdgeTypes.h
+Scheduled for add      Projects/HighLevelGrammars/overloadedOperatorRepresentation.C
+Scheduled for add      Projects/HighLevelGrammars/overloadedOperatorTestCode.C
+Scheduled for add      Projects/HighLevelGrammars/simpleA++.h
+Scheduled for add      ROSE_ResearchPapers/lcpc03_qsys_final.tgz
+Scheduled for add      SCRIPTS/configure_with_SQL
+Scheduled for add      SCRIPTS/dotgenLetter
+Scheduled for add      dqDevelopmentDirectory/test2003_31.C
+Scheduled for add      dqDevelopmentDirectory/test2003_32.C
+Scheduled for add      dqDevelopmentDirectory/test2003_33.C
+Scheduled for add      dqDevelopmentDirectory/test2003_34.C
+Scheduled for add      dqDevelopmentDirectory/test2003_35.C
+Scheduled for add      dqDevelopmentDirectory/test2003_36.C
+Scheduled for add      dqDevelopmentDirectory/test2003_37.C
+Scheduled for add      dqDevelopmentDirectory/test2003_38.C
+Scheduled for add      src/roseIndependentSupport/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphics/DOTGraphInterface.h
+Scheduled for add      src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.C
+Scheduled for add      src/roseIndependentSupport/graphics/DOTSubgraphRepresentation.h
+Scheduled for add      src/roseIndependentSupport/graphics/Makefile.am
+Scheduled for add      src/roseIndependentSupport/graphics/README
+Scheduled for add      src/roseIndependentSupport/graphics/stlDOTgraph.h
+Scheduled for add      src/roseIndependentSupport/graphics/stlgraph.h
+Scheduled for add      src/roseIndependentSupport/visualization/Makefile.am
+Scheduled for add      src/roseIndependentSupport/visualization/README
+Scheduled for add      src/roseIndependentSupport/visualization/dotvisualizer.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/dotvisualizer.h
+Scheduled for add      src/roseIndependentSupport/visualization/font_arial.h
+Scheduled for add      src/roseIndependentSupport/visualization/glcodegen.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/glcodegen.h
+Scheduled for add      src/roseIndependentSupport/visualization/glf.c
+Scheduled for add      src/roseIndependentSupport/visualization/glf.h
+Scheduled for add      src/roseIndependentSupport/visualization/graphinfo.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/graphinfo.h
+Scheduled for add      src/roseIndependentSupport/visualization/main.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/mapcodegen.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/mapcodegen.h
+Scheduled for add      src/roseIndependentSupport/visualization/ntl_vector3dim.h
+Scheduled for add      src/roseIndependentSupport/visualization/style.h
+Scheduled for add      src/roseIndependentSupport/visualization/vizgroup.cpp
+Scheduled for add      src/roseIndependentSupport/visualization/vizgroup.h
+Scheduled for add      tutorial/Makefile.am
+Scheduled for add      tutorial/database/Makefile.am
+Scheduled for add      tutorial/database/customtable_example.C
+Scheduled for add      tutorial/database/databasegraph_example.C
+Scheduled for add      tutorial/database/rosedb_example.C
+Scheduled for add      tutorial/database/simplecallgraph_example.C
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

	
2003-12-05 Qing Yi 0.6.5c
  . Fixed unparser formating to remove redundent empty lines
  . Reinstated test for loop processing, which failed earlier because
    of changed unparser formating.

********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ 3.3.2
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   configure.in
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   LoopProcessing/test/rose_lufac.C
>Locally modified   LoopProcessing/test/rose_mm.C
>Locally modified   LoopProcessing/test/rose_rmatmult3.C
>Locally modified   LoopProcessing/test/rose_tridvpk.C
>Locally modified   src/unparser/unparse_format.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

2003-12-03 Markus Schordan 0.6.5b
* changed cvschk to restrict output of g++ version information for versions 3.x
  to version numbers only.
* changed function AstRestructure::unparserReplace to be static
* Qing fixed problem in LoopProcessing when compiling with make -j
  (included in this version)

********* TESTED with **************
automake (GNU automake) 1.7.7
autoconf (GNU Autoconf) 2.57
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/AstRestructure.h
>Locally modified   MSTL/TreeTraversal.C
>Locally modified   MSTL/TreeTraversal.h
>Locally modified   ProgramAnalysis/CFG/Makefile.am
>Locally modified   SCRIPTS/cvschk
>Locally modified   msDevelopment/mscomp.C
	
2003-12-02 Markus Schordan 0.6.5a
* this version reactivates compilation of test codes
* updated MSTL/AttributeMechanism documentation
* changed abstract grammar (and all code using it) to include SgBasicBlock as RHS in SgScopeStatement
* changed DOTSubgraphRepresentation to inherit from DOTRepresentation (removed all duplicated functions).
* added 'typename' to all for-loops in DOTSubgraphRepresentation
* added explicitely optional 3rd parameter in DOTGraphInterface.h (otherwise gnu 3.3.2 would not find it and compile)
  mDotRep.addEdge( vertexToString(&(*i)), vertexToString(getTargetVertex(e)),"" );
* changed Cpp2CppTranslator (see roseTranslators.[hC])
  - added function setStatusCode(int)
  - added printMessage(string) which takes care of the internal flag 
    for preprocessing mode and surpresses output (otherwise some tests fail)
* added Cpp2VendorTranslator which invokes the vendor compiler
  - changed RoseTestTranslator to inherit from CppToVendorTranslator.
* changed line 167 in ROSE/ProgramAnalysis/OAWrap/SAGE2OA.h to use 0 instead of NULL as return value to allow the use of gnu 2.96 (gnu 3.3.2 compiles it without error message)
* Qing Yi fixed a problem in the unparser (unparse_format.[hC], unparse_stmt.C)
  This fix is included in this check-in
* deactivated test in LoopProcessing/test (see configure.in & LoopProcessing/Makefile.am
	
********* TESTED with **************
automake (GNU automake) 1.7.7
autoconf (GNU Autoconf) 2.57
g++ (GCC) 3.3.2 (--with-GNU_HEADERS; no distcheck)
g++ (GCC) 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   AstProcessingLib/abstractcppgrammar.atg
>Locally modified   AstProcessingLib/sgnodep.cpp
>Locally modified   AstProcessingLib/sgnodep.hpp
>Locally modified   ContainerParallelizer/CPTransformation/BodyTransformation.atg
>Locally modified   ContainerParallelizer/CPTransformation/BodyTransformationParser.C
>Locally modified   ContainerParallelizer/CPTransformation/OmpLoopRATransformation.atg
>Locally modified   ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   MSTL/AttributeMechanism.h
>Locally modified   MSTL/DOTGraphInterface.h
>Locally modified   MSTL/DOTRepresentation.h
>Locally modified   MSTL/DOTSubgraphRepresentation.C
>Locally modified   MSTL/DOTSubgraphRepresentation.h
>Locally modified   MSTL/Makefile.am
>Locally modified   ProgramAnalysis/OAWrap/SAGE2OA.h
>Locally modified   msDevelopment/OmpTransformations/BodyTransformation.atg
>Locally modified   msDevelopment/OmpTransformations/BodyTransformationParser.C
>Locally modified   msDevelopment/OmpTransformations/BodyTransformation_pp.atg
>Locally modified   msDevelopment/OmpTransformations/OmpLoopRATransformation.atg
>Locally modified   msDevelopment/OmpTransformations/OmpLoopRATransformationParser.C
>Locally modified   msDevelopment/OmpTransformations/OmpLoopRATransformation_pp.atg
>Locally modified   msDevelopment/OmpTransformations/sgnodep.cpp
>Locally modified   src/roseTranslators.C
>Locally modified   src/roseTranslators.h
>Locally modified   src/unparser/unparse_format.C
>Locally modified   src/unparser/unparse_format.h
>Locally modified   src/unparser/unparse_stmt.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      MSTL/TreeTraversal.C
+Scheduled for add      MSTL/TreeTraversal.h

2003-11-12 Qing Yi 0.6.4b
. In LoopProcessing, fixed problems due to premature template instantiation by g++3.3.2, which instantated
  the graph template classes when their template parameters are not available and then skipped the invocation
  of the appropriate destructors in deletes.
. Fixed a bug in CFG_ROSE.C regarding last statements of functions being goto statements.
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ g++ (GCC) 3.3.2
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   LoopProcessing/graphs/Makefile.am
>Locally modified   LoopProcessing/support/DAG.h
>Locally modified   LoopProcessing/support/DirectedGraph.h
>Locally modified   LoopProcessing/support/IteratorTmpl.h
>Locally modified   LoopProcessing/support/Makefile.am
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   ProgramAnalysis/CFG/CFG_ROSE.C
>Locally modified   ROSETTA/Grammar/Statement.code
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      LoopProcessing/support/DAG.C
+Scheduled for add      LoopProcessing/support/DirectedGraph.C
+Scheduled for add      LoopProcessing/graphs/DGBaseGraphImpl.C
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********

2003-11-5 Qing Yi 0.6.4a
        . Changed ROSE/Analysis directory to ROSE/ProgramAnalysis. Rearranged this directory 
          and added Interface, CFG, OAWrap (OpenAnalysis Wrap) and OpenAnalysis directory.
          OpenAnalysis source files belong to the repository but not build directly using automake.
          Instead, they are wrapped in namespace OpenAnalysis and compiled in OAWrap directory.
        . Added Control flow analysis implementation interface and two implementations,
          one in namespace ROSE_Analysis and one in namespace OpenAnalysis
        . Add Niles's DOTGraph output interface and implementation into MSTL directory
        . Changed EDGE/src/sageSupport.C to generate NULL_FileInfo instead of abort
          when seeing templates.
        . Changed ROSETTA/Grammar/Support.code and SAGE/AstFixes.C to swap the order
          of applying AstFix (AstFix should be applied before invoking AstPreprocessing)
          and to swap the order of applying ResetParent Fix and other fixes
          (Reset-parent-Fix should be the last one so that the tree is consistant after Fix).
        . Changed ROSETTA/src/statement.C to disable the traversal of SgLabelStatement
          within SgGotoStatement. This creates a cycle in the tree traversal. Eventually,
          this should be fixed so that the SgLabelStatement node is not shared between
          the real label and the goto statement, so that proper tree operations, such as
          tree copy,  can proceed correctly.
        . Changed SAGE/attachPreprocessingInfo.C to comment out an assertion that disallows
          the endOfConstruct FileInfo to be NULL, which failed when processing template
          classes. May need further fix.
        . Changed LoopProcessing directory to support ROSE CFG analysis impl.
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.53
g++ g++ (GCC) 3.3.2
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

2003-10-28 Dan Quinlan 0.6.3a
	* Fixed Cghadd's bug in EDG/SAGE connection for unnamed fields in structs.
	  This was the remaining bug that prevented the use of the gnu 3.x 
	  compilers with the 2.96 header files.  So as a result we can not
	  use the gnu 3.x 3.x compilers with ROSE, and use the gnu 3.x
	  compilers as a backend compiler for ROSE.  A better fix at a
	  later date will be to use the 3.x header files with the 
	  3.x compiler (but this will require the newest version of EDG
	  within ROSE and some additional work on the 3.x header files
	  as required to process them through the newest version of EDG
	  (not too much work, so it should be OK, it might require a
	  hand modified version of the 3.x header fiels, but it is not
	  too much that has to be modified (a few things commented out
	  is all that is required))).
	* Fixed Chadd's other bug that he reported as well (it was the
	  least we could do after his first bug being the one that 
	  when fixed allowed us to use the 3.x compilers finally.
	  "for (int i=0; i <n; i++);" failed to compile. An empty 
	  SgBasicBlock is now generated so that the pointer to the
	  basic blosk is not null (internal processing within ROSE is not
	  quite strict and an empty block is better than a null pointer
	  so that null pointers generally can be interpreted to be errors.
	* Fixed documentation for the --with-GNU_HEADERS configure option
	* Removed the --with-INTEL_HEADERS option (as Markus suggested).
	* Commented out the test codes run in
	  LoopProcessing/tests/Makefile.am. Qing will address these in her
	  next checkin as a final part of the move to work with both gnu
	  2.96 and gnu 3.x compilers.

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   EDG/src/sage_gen_be.C
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   Projects/DataBase/Makefile.am
>Locally modified   config/ROSE.m4
>Locally modified   dqDevelopmentDirectory/Makefile.am
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      dqDevelopmentDirectory/test2003_29.C
+Scheduled for add      dqDevelopmentDirectory/test2003_30.C
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********


2003-10-28 Dan Quinlan 0.6.2a
	* Added ROSE/Projects directory (to be new home for different
	  projects which provide additional features to ROSE. The 
	  Projects directory currently includes subdirectories for:
	    1) DataBase feature within ROSE.  This is the current
	       working version from Nils.  Example codes are not yet
	       using this version and will shortly.
	    2) HighLevelGrammars (automated definition of high grammars
	       for domain-specific languages from libraries; this is the
 	       2nd implementation of this work which previously appeared 
	       within ROSETTA) (current work is still incomplete).
	  The current status of this work is checked in with this release.
	* Draft of desing document for Highlevel grammars within ROSE 
	  (still incomplete).
	* Fixed configureation bug which caused GNU_HEADERS directory to
	  be overwritten by the configuration mechanism's default
	  construction of header files from the  backen compiler.
	* Removed comment generated by Query library.
	* Make setup of backend compiler's heder files a separate macro.
	* Added unparser.h to rose.h
	* Added ROSE/src/unparser/*.h files to the installation include
	  directory (generated by "make install")
	* Added supporting functions to ROSE/src/transformation.[hC]
	  to support getting parent locations in the AST from any AST
	  node.
	* Added made parameters to stripPathFromFileName and
	  getPathFromFileName functions in ROSE/src/utility_functions.[hC]
	  const.
	* Moved function to generate declarations (used in prefix
	  mechanism) to unparser.[hC] so that it could be used more
	  generally (within Projects/HighLevelGrammars).
	* Fixed AST_RewriteMechanism/prefixGeneration.C to use general
	  mechanism now defined in the unparser.
	* Added function to read a string from a file in
	  ROSE/util/string_functions.
	* Fixed generation of mangled names for functions and classes (not
	  used anywhere else, so that should be the complete fix now).
	
********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/prefixGeneration.C
>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
>Locally modified   QueryLibs/NodeQuery/nodeQuery.C
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   docs/Rose/Makefile.am
>Locally modified   src/rose.h
>Locally modified   src/transformationSupport.C
>Locally modified   src/transformationSupport.h
>Locally modified   src/utility_functions.C
>Locally modified   src/utility_functions.h
>Locally modified   src/unparser/Makefile.am
>Locally modified   src/unparser/unparse_format.h
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
>Locally modified   util/string_functions.C
>Locally modified   util/string_functions.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      Projects/Makefile.am
+Scheduled for add      Projects/DataBase/DatabaseGraph.h
+Scheduled for add      Projects/DataBase/GlobalDatabaseConnection.C.in
+Scheduled for add      Projects/DataBase/GlobalDatabaseConnection.h
+Scheduled for add      Projects/DataBase/Makefile.am
+Scheduled for add      Projects/DataBase/TableAccess.C
+Scheduled for add      Projects/DataBase/TableAccess.h
+Scheduled for add      Projects/DataBase/TableAccessMacros.h
+Scheduled for add      Projects/DataBase/TableDefinitions.h
+Scheduled for add      Projects/DataBase/createTableAccessMacros.pl
+Scheduled for add      Projects/DataBase/testDataBase.C
+Scheduled for add      Projects/HighLevelGrammars/AbstractionAttribute.h
+Scheduled for add      Projects/HighLevelGrammars/ExampleUserCode.code
+Scheduled for add      Projects/HighLevelGrammars/GeneratedAbstractionCode.code
+Scheduled for add      Projects/HighLevelGrammars/GeneratedAbstractionRecognitionCode.code
+Scheduled for add      Projects/HighLevelGrammars/GeneratedLibraryCode.code
+Scheduled for add      Projects/HighLevelGrammars/Makefile.am
+Scheduled for add      Projects/HighLevelGrammars/exampleTranslator.C
+Scheduled for add      Projects/HighLevelGrammars/highLevelGrammarGenerator.C
+Scheduled for add      Projects/HighLevelGrammars/testApp.C
+Scheduled for add      Projects/HighLevelGrammars/testCode.C
+Scheduled for add      docs/Rose/HighLevelGrammars/design.tex
********* Files Scheduled to be removed *********
-Scheduled for removal  coco/Makefile~
********* WARNINGS *********
********* ERRORS *********


2003-10-27 Markus Schordan 0.6.01a
        * KNOWN BUGS: configure option --with-GNU_HEADERS overwrites ROSE default headers.
	  configure cannot be used with 3.3.2 yet.
        * fixed problems in ROSE to compile with gcc3.2
	  added __GNUC__ and __GNUC_MINOR__ where necessary to ensure backward compatibilty to 2.96
          (but note: make (dist)check does *not* succeed with 3.x header files
	   use: configure --
	  - fixed frame files in Coco
	  - fixed AstProcessing/AstSuccessorSelectors.C
          - added (config.h and using namespace std;):
	    + fixed Analysis/CPPAstInterface.C 
	    + fixed Analysis/StmtInfoAnal.C 
	    LoopProcessing/depInfo/DepRel.C
	    LoopProcessing/outsideInterface/general.h
	  - fixed LoopProcessing/computation/LoopTreeDepComp.h friend
	  - LoopProcessing/test/TestLoopProcessor.C added general.h
          - LoopProcessing/test/Makefile.am added local include path
	  - LoopProcessing/test/TestLoopProcessor.C added #include <iostream>
	  - LoopProcessing/AstInterface.C
	  - removed default value for 3rd argument in C file from function 
	     'Boolean TransformationTraverse()' [it is defined in AstInterface.h]
	ContainerParallelizer/CPAnalysis/TestParallelLoop.h (added include iostream)
	  - dqDevelopmentDirectory/fileFilter.C added #include <config.h>

	  - HackTemplate.C: has a workaround for gcc2.96 template bug (not necessary with 3.2
	    and I made it specific to gcc versions lower than 3.x)
	  - fixed all 'typename' issues for gcc3.3.2 in ROSE/AstProcessing

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)

********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/nodeCollection.C
>Locally modified   AST_RewriteMechanism/rewrite.h
>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
>Locally modified   AST_RewriteMechanism/rewriteTreeTraversal.C
>Locally modified   AST_RewriteMechanism/testMidLevelInterface.C
>Locally modified   Analysis/CPPAstInterface.C
>Locally modified   Analysis/StmtInfoAnal.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/AstRestructure.C
>Locally modified   AstProcessingLib/AstRestructure.h
>Locally modified   AstProcessingLib/AstReverseProcessing.C
>Locally modified   AstProcessingLib/AstReverseProcessing.h
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
>Locally modified   AstProcessingLib/Makefile.am
>Locally modified   AstProcessingLib/CocoPreprocessor/Makefile.am
>Locally modified   AstProcessingLib/CocoPreprocessor/agpp.atg
>Locally modified   AstProcessingLib/CocoPreprocessor/agppp.cpp
>Locally modified   AstProcessingLib/CocoPreprocessor/agppp.hpp
>Locally modified   AstProcessingLib/CocoPreprocessor/agpps.cpp
>Locally modified   AstProcessingLib/CocoPreprocessor/compile
>Locally modified   ContainerParallelizer/ContainerTransformer.C
>Locally modified   ContainerParallelizer/Makefile.am
>Locally modified   ContainerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   ContainerParallelizer/CPAnalysis/TestParallelLoop.h
>Locally modified   ContainerParallelizer/CPAnalysis/UserSpec.h
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   LoopProcessing/AstInterface.C
>Locally modified   LoopProcessing/HackTemplate.C
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.h
>Locally modified   LoopProcessing/depInfo/DepRel.C
>Locally modified   LoopProcessing/driver/BreakupStatement.C
>Locally modified   LoopProcessing/graphs/IDGraphCreate.C
>Locally modified   LoopProcessing/outsideInterface/general.h
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   LoopProcessing/test/TestLoopProcessor.C
>Locally modified   MSTL/AttributeMechanism.C
>Locally modified   config/ROSE.m4
>Locally modified   dqDevelopmentDirectory/fileFilter.C
>Locally modified   msDevelopment/mscomp.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/compiler.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/cr.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/parser_c.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/parser_h.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/scan_c.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cplus2/scan_h.frm
********* Files Scheduled to be removed *********
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/compiler.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/parser_c.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/parser_h.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/scan_c.frm
-Scheduled for removal  AstProcessingLib/CocoPreprocessor/scan_h.frm
-Scheduled for removal  coco/Makefile.in
-Scheduled for removal  coco/cplus2/Makefile.in
-Scheduled for removal  coco/sources/Makefile.in

2003-10-22 Dan Quinlan 0.6.0a
	* Finished ROSE rewrite mechanism. This version reorganizes
	  previous work and added multiple levels of interfaces to
	  partition and organize how the rewrite mechanism is seen and
	  used. Four levels of interface are defined and the best place
	  to find out more information is in the documentation.
	* Features added to rewrite mechanism to support transformation 
	  specification of complex strings and line continuation characters.
	* Features added to rewrite mechanism to handle macros and control
	  how they are expanded (prevent them from being expanded
	  prematurely in the intermediat code so that they can be
	  preserved in the final unparsed code. These are used in the
	  varargs processing as well.
	* Documentation has been updated to reflect the new rewrite
	  mechanism.
	* Andreas' Query Library work (rewriting the previous query
	  library and making it extensible) is almost complete and the
	  current version is included in this checkin.  The
	  documentation has been update to include example of how the
          new Query Ligrary works.
	* Added Andrea's documentation for the new Query library to the
	  ROSE documentation.
	* Generated prefixfrom global scope and fixed unparser bugs that
	  prevented unparsing of system header file declarations.
	* Fixed bugs in unparser that prevented generation of the correct
	  code for several declarations (in test codes: test2003_24.C,
	  test2003_25.C,test2003_26.C)
	* Added case for generation of file info data from template
	    (sageSupport.C).
	* Added ROSE/Query/ProjectQuery to permit access to Sgproject node
	    from any other node in the AST.  This query uses Markus's new
	    reverse traversal to assend to the root of the AST.
	* Fixed SgProject::parse() function to set parent of files to the
	    project (was previously not set).  This was required for the
	    ProjectQuery.
	* Added SgTypedefType in the TransformationSupport::getTypeName(SgType*)
	  function (to the cases supported there).  Bug reported by Brian
	    Miller.
	* Added (Andreas's work) all other cases in 
	  TransformationSupport::getTypeName(SgType*).  Flushed out other
	  cases within other TransformationSupport functions.
	* Fixed bug in SgLocatedNode::addToAttachedPreprocessingInfo() to
	    add new comments/directives closer to the associated
	    statement.
	* Added new function to manipulate the commandline in the SgFile object:
               void $GRAMMAR_PREFIX_File::addCommandLineArgument ( 
                         char** & inputCommandLine, 
                         int & numberOfCommandLineArguments, 
                         char* newArgument )
	* Included Boyana's modification to ROSE/makelinks script.
	  But had to remove it when it didn't work for me on a fresh
	  checkout from CVS.
	* Fixed spelling mistake: changed name of AST_RewiteMechanism to
          AST_RewriteMechanism.  Fixed related spelling errors in
	  documentation.	
	* Removed AstProcessing/AstRestructure.C from
	    libastprocessing_a_SOURCES in Makefile.am (it requires
	    the old AST Rewrite Mechanism which no longer exists).
	* Removed msDevelopment from SUBDIRS in 
	  ROSE/Makefile.am (it and the OmpTransformations directory require
	  the old AST Rewrite Mechanism which no longer exists).
	* Removed ContainerParallelizer directory from SUBDIRS in
	  ROSE/Makefile.am.  We have a ExamplePreprocessors directory 
	  for the project of the month sort of directories.  If that is
	  not good enough then we should perhaps have a special PROJECTS
	  directory for such work.  We need to avoid polluting the root
	  level ROSE directory.
	* Moved these static variable declarations to the AgDefaultError.C 
	  file from the AgDefaultError.h file since it to avoid compiler 
	  warnings about unused varables (-Wall warnings under g++):
	          static FILE *lst;
	          static char SourceName[]={'s','o','u','r','c','e'};
	* Added configure switches to permit use of alternate header files
	  when using EDG front-end.  See configure --help for details.
	  switches are available for GNU, INTEL, and any user specified
	  directory of header files.  INTEL header files are not included
	  yet while we pursue licensing issues.
	* Added preprocessed (translated) GNU 2.96 header files to ROSE
	  (in ROSE/GNU_HEADERS) to permit use of GNU_HEADERS with other
	  compilers.  This is expected to simplify use of GNU 3.x
	  compilers with the GNU 2.96 headers.  Note that the headers
	  are only important for ROSE processing the back-end compiler
	  always uses its own header files (our attempt is to provide
	  a consistant solution).
	* Fixed varargs mechanism:
	    1) processing of back-end compiler's header files recognizes 
	       varargs.h and stdarg.h and inserts code at the top to
	       over-rides whatever is in those files and inserts either
	        #include "rose_varargs.h" or #include "rose_stdarg.h"
	    2) rose_varargs.h and rose_stdarg.h differ only in that
	       the macro va_start takes 2 parameters in rose_stdarg.h
	       and only 1 parameter n rose_varargs.h.
	    3) The macros defined (required for the variable arguments
	       mechanism):
	       #define va_start(parmN) "ROSE-MACRO-EXPRESSION:va_start("#parmN")"
	       #define va_arg(ap,type) (type)"ROSE-MACRO-EXPRESSION:va_arg("#ap","#type")"
	       #define va_end(ap)      "ROSE-MACRO-EXPRESSION:va_end("#ap")"
	       The effect is to generate strings which are then unparsed
	       with special code (this is a stardard ROSE mechanism for
	       macro processing).  The unparsed code is identical to the 
	       input code so that all vararg macros are preserved.
	       Ths feature takes advantage of "X""Y" being same as 
	       equivalent to "XY" (a interesting feature of C strings).
	    4) Some additional vararg specific defines are include.
	* Cleaned up repositories docs directory. Removed old Sage++
	  documents (ROSE/docs/Sage_Docs direcoty). Removed old ROSE 
	  documentation (ROSE/docs/ROSE directory).
	* Removed (cvs remove) old AST_RewiteMechanism (the misspelled
	  version of the directory).  This however clears all CVS
	  history, but the new AST rewrite mechanism is so different
	  that it should not make much difference.
	* Added more test codes to the dqDevelopmentDirectory directory.
	  Most represent fixed bugs and some represent outstanding bugs
	  not all are currently run by "make check", this wil be fixed in
	  the future.
	* Added current ROSE research papers ROSE/ROSE_ResearchPapers.
	  See ROSE/ROSE_ResearchPapers/README for details and summary of
	  research papers on ROSE.
	* Added Nil's database example codes. New codes added to:
	  ExamplePreprocessors/DocumentedExamples/DataBaseExamples.
	  Since we don't yet have the data base configuration setup
	  the data base can not yet be used within ROSE and the example
	  codes that appear in the documentation are not tested.  
	* Added Nil's documentation for using the data base within ROSE.
	  We use the mySQL database, which we will not include in ROSE and
	  which will have to be installed separately (future configure
	  command line options will let ROSE know where the data base is
	  installed so that it can be used.
	* Added docs/Rose/AstRewrite/AstRewrite.tex to document rewrite
	  system.
	* Added docs/Rose/ProgramAnalysis/ProgramAnalysis.tex to document
	  future documentation related to program analysis.
	* Added docs/Rose/SAGE_III/SageIII.tex to document details
	  specific to SAGE III (history, new features, etc.)
	* Added config/rose_stdarg.h to permit isolation of code to
	  include in the stdarg.h file (insertion included in header
	  file translation). Same thing done for varargs.h.
	  config/stdarg_handling_commands.sed file contains translation 
	  commands (uses sed).  Same mechanism provide for varargs.h.
	* Fixed SCRIPTS/find_cvs_conflicts script to correctly report
	  conflicts introduced by CVS (searches for "<<<<" which is
	  common to all locations where conflicts are reported by CVS).
	* Added many chenges to A++/P++ translator, but this is still
	  not ready to be compiled with the new version of the rewrite
	  system. This code is checked in, but the A++P++ translator is
	  not compiled and tested within this current release.
	* Commented out "BUGFIX" message in
	  AstProcessingLib/AstClearVisitFlags.C (since it a 90% of all I/O when 
	  debugging the rewrite test codes.) 
	* Modified function declaration to make it static:
	  (in AstProcessingLib/AstProcessing.h)
	  static string get_variantName(unsigned int v);
	* Commented out AstRestructure.C since it requires
	  AstRestructure.h which requires old version of rewrite system.
	  This also creates a circular header file dependence.
	* Fixed problem in rose_varargs.h and rose_stdargs.h (very strange
	  problem) where a redundnet typedef "typedef char* va_list;"
	  caused one of the LoopProcessing tests (lufac.C) to fail.
	  The test caused an alternative correct result but failed to
	  match the expected result (so diff failed).  Not clear why this
	  redundent typedef cause such a problem. but removing caused the 
	  "gmake distcheck" to pass all tests where as previous to the 
	  fix only the "make check" test passed and "gmake distcheck"
	  failed (very mysteriously).  The LoopProcessing tests were 
	  not modified.	
	

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   README
>Locally modified   TODO
>Locally modified   configure.in
>Locally modified   makelinks
>Locally modified   AstProcessingLib/AgDefaultError.C
>Locally modified   AstProcessingLib/AgDefaultError.h
>Locally modified   AstProcessingLib/AstClearVisitFlags.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/Makefile.am
>Locally modified   EDG/src/sageSupport.C
>Locally modified   EDG/src/sage_gen_be.C
>Locally modified   ExamplePreprocessors/Makefile.am
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/arrayPreprocessor.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/programTransformation.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/programTransformation.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/testApp.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/Makefile.am
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
>Locally modified   ExamplePreprocessors/DOTGenerator/Makefile.am
>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.C
>Locally modified   ExamplePreprocessors/DefaultPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/Makefile.am
>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteExample1.C
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   ExamplePreprocessors/PDFGenerator/Makefile.am
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   QueryLibs/Makefile.am
>Locally modified   QueryLibs/roseQueryLib.h
>Locally modified   QueryLibs/BooleanQuery/booleanQuery.C
>Locally modified   QueryLibs/BooleanQuery/booleanQuery.h
>Locally modified   QueryLibs/NameQuery/nameQuery.C
>Locally modified   QueryLibs/NameQuery/nameQuery.h
>Locally modified   QueryLibs/NameQuery/nameQueryInheritedAttribute.C
>Locally modified   QueryLibs/NameQuery/nameQueryInheritedAttribute.h
>Locally modified   QueryLibs/NodeQuery/nodeQuery.C
>Locally modified   QueryLibs/NodeQuery/nodeQuery.h
>Locally modified   QueryLibs/NodeQuery/nodeQueryInheritedAttribute.C
>Locally modified   QueryLibs/NodeQuery/nodeQueryInheritedAttribute.h
>Locally modified   QueryLibs/NumberQuery/numberQuery.C
>Locally modified   QueryLibs/NumberQuery/numberQuery.h
>Locally modified   QueryLibs/NumberQuery/numberQueryInheritedAttribute.C
>Locally modified   QueryLibs/NumberQuery/numberQueryInheritedAttribute.h
>Locally modified   ROSETTA/Grammar/LocatedNode.code
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   SAGE/AstFixes.C
>Locally modified   SCRIPTS/find_cvs_conflicts
>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
>Locally modified   coco/Makefile.in
>Locally modified   coco/sources/Makefile.in
>Locally modified   config/Makefile.am
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   config/ROSE.m4
>Locally modified   config/create_system_headers
>Locally modified   config/generate-backend-compiler-specific-headers.m4
>Locally modified   config/rose_varargs.h
>Locally modified   docs/Rose/Makefile.am
>Locally modified   docs/Rose/acknowledgments.tex
>Locally modified   docs/Rose/examples.tex
>Locally modified   docs/Rose/manual.tex.in
>Locally modified   docs/Rose/preface.tex
>Locally modified   docs/Rose/preprocessorDesign.tex
>Locally modified   docs/Rose/rose.cfg.in
>Locally modified   docs/Rose/sage.cfg.in
>Locally modified   docs/Rose/QueryLibrary/QueryLibrary.tex
>Locally modified   docs/Rose/Tutorial/tutorial.tex
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   dqDevelopmentDirectory/test2003_19.C
>Locally modified   dqDevelopmentDirectory/testQueryLib.C
>Locally modified   msDevelopment/Makefile.am
>Locally modified   msDevelopment/mscomp.C
>Locally modified   src/rose.h
>Locally modified   src/transformationSupport.C
>Locally modified   src/transformationSupport.h
>Locally modified   src/utility_functions.C
>Locally modified   src/utility_functions.h
>Locally modified   src/unparser/Makefile.am
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparse_type.C
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
>Locally modified   util/string_functions.C
>Locally modified   util/string_functions.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AST_RewriteMechanism/ASTFragmentCollectorTraversal.C
+Scheduled for add      AST_RewriteMechanism/ASTRewrite.docs
+Scheduled for add      AST_RewriteMechanism/Makefile.am
+Scheduled for add      AST_RewriteMechanism/highLevelRewriteInterface.h
+Scheduled for add      AST_RewriteMechanism/inputProgram1.C
+Scheduled for add      AST_RewriteMechanism/inputProgram2.C
+Scheduled for add      AST_RewriteMechanism/lowLevelRewriteInterface.h
+Scheduled for add      AST_RewriteMechanism/midLevelRewriteInterface.h
+Scheduled for add      AST_RewriteMechanism/nodeCollection.C
+Scheduled for add      AST_RewriteMechanism/nodeCollectionTemplates.C
+Scheduled for add      AST_RewriteMechanism/prefixGeneration.C
+Scheduled for add      AST_RewriteMechanism/rewrite.h
+Scheduled for add      AST_RewriteMechanism/rewriteASTFragementString.C
+Scheduled for add      AST_RewriteMechanism/rewriteASTFragementStringTemplates.C
+Scheduled for add      AST_RewriteMechanism/rewriteAccumulatedAttribute.C
+Scheduled for add      AST_RewriteMechanism/rewriteDebuggingSupport.C
+Scheduled for add      AST_RewriteMechanism/rewriteHighLevelInterface.C
+Scheduled for add      AST_RewriteMechanism/rewriteLowLevelInterface.C
+Scheduled for add      AST_RewriteMechanism/rewriteMidLevelInterface.C
+Scheduled for add      AST_RewriteMechanism/rewriteMidLevelInterfaceTemplates.C
+Scheduled for add      AST_RewriteMechanism/rewriteSynthesizedAttribute.C
+Scheduled for add      AST_RewriteMechanism/rewriteSynthesizedAttributeTemplates.C
+Scheduled for add      AST_RewriteMechanism/rewriteTreeTraversal.C
+Scheduled for add      AST_RewriteMechanism/rewriteTypeDeclaration.C
+Scheduled for add      AST_RewriteMechanism/testDeclarationPrefixGeneration.C
+Scheduled for add      AST_RewriteMechanism/testDeclarationPrefixGeneration_testCode.C
+Scheduled for add      AST_RewriteMechanism/testExample1.C
+Scheduled for add      AST_RewriteMechanism/testMidLevelInterface.C
+Scheduled for add      AST_RewriteMechanism/testNewRewrite.C
+Scheduled for add      AST_RewriteMechanism/testNewRewrite.h
+Scheduled for add      AST_RewriteMechanism/testRewritePermutations.C
+Scheduled for add      AST_RewriteMechanism/testRewriteReplacementPermutations.C
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/Makefile.am
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/customtable_example.C
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/databasegraph_example.C
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/interfaces_example.h
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/rosedb_example.C
+Scheduled for add      ExamplePreprocessors/DocumentedExamples/DataBaseExamples/simplecallgraph_example.C
+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/example.C
+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/example_support.C
+Scheduled for add      GNU_HEADERS/hdrs1/PlotFile.h
+Scheduled for add      GNU_HEADERS/hdrs1/SFile.h
+Scheduled for add      GNU_HEADERS/hdrs1/algo.h
+Scheduled for add      GNU_HEADERS/hdrs1/algobase.h
+Scheduled for add      GNU_HEADERS/hdrs1/algorithm
+Scheduled for add      GNU_HEADERS/hdrs1/alloc.h
+Scheduled for add      GNU_HEADERS/hdrs1/bitset
+Scheduled for add      GNU_HEADERS/hdrs1/builtinbuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/bvector.h
+Scheduled for add      GNU_HEADERS/hdrs1/cassert
+Scheduled for add      GNU_HEADERS/hdrs1/cctype
+Scheduled for add      GNU_HEADERS/hdrs1/cerrno
+Scheduled for add      GNU_HEADERS/hdrs1/cfloat
+Scheduled for add      GNU_HEADERS/hdrs1/ciso646
+Scheduled for add      GNU_HEADERS/hdrs1/climits
+Scheduled for add      GNU_HEADERS/hdrs1/clocale
+Scheduled for add      GNU_HEADERS/hdrs1/cmath
+Scheduled for add      GNU_HEADERS/hdrs1/complex
+Scheduled for add      GNU_HEADERS/hdrs1/complex.h
+Scheduled for add      GNU_HEADERS/hdrs1/csetjmp
+Scheduled for add      GNU_HEADERS/hdrs1/csignal
+Scheduled for add      GNU_HEADERS/hdrs1/cstdarg
+Scheduled for add      GNU_HEADERS/hdrs1/cstddef
+Scheduled for add      GNU_HEADERS/hdrs1/cstdio
+Scheduled for add      GNU_HEADERS/hdrs1/cstdlib
+Scheduled for add      GNU_HEADERS/hdrs1/cstring
+Scheduled for add      GNU_HEADERS/hdrs1/ctime
+Scheduled for add      GNU_HEADERS/hdrs1/cwchar
+Scheduled for add      GNU_HEADERS/hdrs1/cwctype
+Scheduled for add      GNU_HEADERS/hdrs1/defalloc.h
+Scheduled for add      GNU_HEADERS/hdrs1/deque
+Scheduled for add      GNU_HEADERS/hdrs1/deque.h
+Scheduled for add      GNU_HEADERS/hdrs1/editbuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/fstream
+Scheduled for add      GNU_HEADERS/hdrs1/fstream.h
+Scheduled for add      GNU_HEADERS/hdrs1/function.h
+Scheduled for add      GNU_HEADERS/hdrs1/functional
+Scheduled for add      GNU_HEADERS/hdrs1/hash_map
+Scheduled for add      GNU_HEADERS/hdrs1/hash_map.h
+Scheduled for add      GNU_HEADERS/hdrs1/hash_set
+Scheduled for add      GNU_HEADERS/hdrs1/hash_set.h
+Scheduled for add      GNU_HEADERS/hdrs1/hashtable.h
+Scheduled for add      GNU_HEADERS/hdrs1/heap.h
+Scheduled for add      GNU_HEADERS/hdrs1/indstream.h
+Scheduled for add      GNU_HEADERS/hdrs1/iomanip
+Scheduled for add      GNU_HEADERS/hdrs1/iomanip.h
+Scheduled for add      GNU_HEADERS/hdrs1/iosfwd
+Scheduled for add      GNU_HEADERS/hdrs1/iostream
+Scheduled for add      GNU_HEADERS/hdrs1/iostream.h
+Scheduled for add      GNU_HEADERS/hdrs1/istream.h
+Scheduled for add      GNU_HEADERS/hdrs1/iterator
+Scheduled for add      GNU_HEADERS/hdrs1/iterator.h
+Scheduled for add      GNU_HEADERS/hdrs1/list
+Scheduled for add      GNU_HEADERS/hdrs1/list.h
+Scheduled for add      GNU_HEADERS/hdrs1/map
+Scheduled for add      GNU_HEADERS/hdrs1/map.h
+Scheduled for add      GNU_HEADERS/hdrs1/memory
+Scheduled for add      GNU_HEADERS/hdrs1/multimap.h
+Scheduled for add      GNU_HEADERS/hdrs1/multiset.h
+Scheduled for add      GNU_HEADERS/hdrs1/numeric
+Scheduled for add      GNU_HEADERS/hdrs1/ostream.h
+Scheduled for add      GNU_HEADERS/hdrs1/pair.h
+Scheduled for add      GNU_HEADERS/hdrs1/parsestream.h
+Scheduled for add      GNU_HEADERS/hdrs1/pfstream.h
+Scheduled for add      GNU_HEADERS/hdrs1/procbuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/pthread_alloc
+Scheduled for add      GNU_HEADERS/hdrs1/pthread_alloc.h
+Scheduled for add      GNU_HEADERS/hdrs1/queue
+Scheduled for add      GNU_HEADERS/hdrs1/rope
+Scheduled for add      GNU_HEADERS/hdrs1/rope.h
+Scheduled for add      GNU_HEADERS/hdrs1/ropeimpl.h
+Scheduled for add      GNU_HEADERS/hdrs1/set
+Scheduled for add      GNU_HEADERS/hdrs1/set.h
+Scheduled for add      GNU_HEADERS/hdrs1/slist
+Scheduled for add      GNU_HEADERS/hdrs1/slist.h
+Scheduled for add      GNU_HEADERS/hdrs1/sstream
+Scheduled for add      GNU_HEADERS/hdrs1/stack
+Scheduled for add      GNU_HEADERS/hdrs1/stack.h
+Scheduled for add      GNU_HEADERS/hdrs1/stdexcept
+Scheduled for add      GNU_HEADERS/hdrs1/stdiostream.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_algo.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_algobase.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_alloc.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_bvector.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_config.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_construct.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_deque.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_function.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_hash_fun.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_hash_map.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_hash_set.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_hashtable.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_heap.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_iterator.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_list.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_map.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_multimap.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_multiset.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_numeric.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_pair.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_queue.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_raw_storage_iter.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_relops.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_rope.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_set.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_slist.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_stack.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_tempbuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_tree.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_uninitialized.h
+Scheduled for add      GNU_HEADERS/hdrs1/stl_vector.h
+Scheduled for add      GNU_HEADERS/hdrs1/stream.h
+Scheduled for add      GNU_HEADERS/hdrs1/streambuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/strfile.h
+Scheduled for add      GNU_HEADERS/hdrs1/string
+Scheduled for add      GNU_HEADERS/hdrs1/strstream
+Scheduled for add      GNU_HEADERS/hdrs1/strstream.h
+Scheduled for add      GNU_HEADERS/hdrs1/tempFile
+Scheduled for add      GNU_HEADERS/hdrs1/tempbuf.h
+Scheduled for add      GNU_HEADERS/hdrs1/tree.h
+Scheduled for add      GNU_HEADERS/hdrs1/type_traits.h
+Scheduled for add      GNU_HEADERS/hdrs1/utility
+Scheduled for add      GNU_HEADERS/hdrs1/valarray
+Scheduled for add      GNU_HEADERS/hdrs1/vector
+Scheduled for add      GNU_HEADERS/hdrs1/vector.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/bastring.cc
+Scheduled for add      GNU_HEADERS/hdrs1/std/bastring.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/complext.cc
+Scheduled for add      GNU_HEADERS/hdrs1/std/complext.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/cpp_type_traits.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/dcomplex.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/fcomplex.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/gslice.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/gslice_array.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/indirect_array.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/ldcomplex.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/mask_array.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/slice.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/slice_array.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/std_valarray.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/straits.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/valarray_array.h
+Scheduled for add      GNU_HEADERS/hdrs1/std/valarray_array.tcc
+Scheduled for add      GNU_HEADERS/hdrs1/std/valarray_meta.h
+Scheduled for add      GNU_HEADERS/hdrs3/README
+Scheduled for add      GNU_HEADERS/hdrs3/cxxabi.h
+Scheduled for add      GNU_HEADERS/hdrs3/exception
+Scheduled for add      GNU_HEADERS/hdrs3/float.h
+Scheduled for add      GNU_HEADERS/hdrs3/g2c.h
+Scheduled for add      GNU_HEADERS/hdrs3/iso646.h
+Scheduled for add      GNU_HEADERS/hdrs3/limits.h
+Scheduled for add      GNU_HEADERS/hdrs3/new
+Scheduled for add      GNU_HEADERS/hdrs3/new.h
+Scheduled for add      GNU_HEADERS/hdrs3/proto.h
+Scheduled for add      GNU_HEADERS/hdrs3/rose_stdarg.h
+Scheduled for add      GNU_HEADERS/hdrs3/rose_varargs.h
+Scheduled for add      GNU_HEADERS/hdrs3/stdarg.h
+Scheduled for add      GNU_HEADERS/hdrs3/stdbool.h
+Scheduled for add      GNU_HEADERS/hdrs3/stddef.h
+Scheduled for add      GNU_HEADERS/hdrs3/syslimits.h
+Scheduled for add      GNU_HEADERS/hdrs3/typeinfo
+Scheduled for add      GNU_HEADERS/hdrs3/varargs.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/NXConstStr.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/Object.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/Protocol.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/encoding.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/hash.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/objc-api.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/objc-list.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/objc.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/sarray.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/thr.h
+Scheduled for add      GNU_HEADERS/hdrs3/objc/typedstream.h
+Scheduled for add      ROSE_ResearchPapers/CPC2000-SupportForObjectOrientedFrameworks.ps
+Scheduled for add      ROSE_ResearchPapers/CPC2001-Concurrency2003.ps
+Scheduled for add      ROSE_ResearchPapers/HIPS2001-LibrariesAsDomainSpecificLanguages.ps
+Scheduled for add      ROSE_ResearchPapers/IPPS1997-ExpressionTemplatePerformanceIssues.ps
+Scheduled for add      ROSE_ResearchPapers/JMLC2003-RoseArchitecture.ps
+Scheduled for add      ROSE_ResearchPapers/LCPC03-ParallelOptimizationOfContainers.ps
+Scheduled for add      ROSE_ResearchPapers/LCPC2001-SpecificationOfTransformations.ps
+Scheduled for add      ROSE_ResearchPapers/PDPTA2001-ROSETTA.ps
+Scheduled for add      ROSE_ResearchPapers/README
+Scheduled for add      ROSE_ResearchPapers/SCI1999-OptimizingArrayClassLibraries.ps
+Scheduled for add      ROSE_ResearchPapers/WOMPAT2003-OpenMPTranslation.ps
+Scheduled for add      ROSE_ResearchPapers/selectedpapers.bib
+Scheduled for add      config/rose_stdarg.h
+Scheduled for add      config/stdarg_handling_commands.sed
+Scheduled for add      docs/Rose/AstRewrite/AstRewrite.tex
+Scheduled for add      docs/Rose/ProgramAnalysis/ProgramAnalysis.tex
+Scheduled for add      docs/Rose/SAGE_III/SageIII.tex
+Scheduled for add      dqDevelopmentDirectory/test.C
+Scheduled for add      dqDevelopmentDirectory/test2003_22.C
+Scheduled for add      dqDevelopmentDirectory/test2003_22.h
+Scheduled for add      dqDevelopmentDirectory/test2003_23.C
+Scheduled for add      dqDevelopmentDirectory/test2003_24.C
+Scheduled for add      dqDevelopmentDirectory/test2003_24.h
+Scheduled for add      dqDevelopmentDirectory/test2003_25.C
+Scheduled for add      dqDevelopmentDirectory/test2003_25.h
+Scheduled for add      dqDevelopmentDirectory/test2003_26.C
+Scheduled for add      dqDevelopmentDirectory/test2003_27.C
+Scheduled for add      dqDevelopmentDirectory/test2003_28.C
+Scheduled for add      dqDevelopmentDirectory/testAstAttributes_testFile.C
********* Files Scheduled to be removed *********
-Scheduled for removal  AST_RewiteMechanism/ASTFragmentContainer.C
-Scheduled for removal  AST_RewiteMechanism/ASTFragmentRequirementStrings.C
-Scheduled for removal  AST_RewiteMechanism/ASTRewrite.docs
-Scheduled for removal  AST_RewiteMechanism/DesignGoals.txt
-Scheduled for removal  AST_RewiteMechanism/Makefile.am
-Scheduled for removal  AST_RewiteMechanism/inputDeclarationTest.C
-Scheduled for removal  AST_RewiteMechanism/inputProgram1.C
-Scheduled for removal  AST_RewiteMechanism/rewrite.C
-Scheduled for removal  AST_RewiteMechanism/rewrite.h
-Scheduled for removal  AST_RewiteMechanism/rewriteASTFragementString.C
-Scheduled for removal  AST_RewiteMechanism/rewriteAccumulatedAttribute.C
-Scheduled for removal  AST_RewiteMechanism/rewriteInheritedAttribute.C
-Scheduled for removal  AST_RewiteMechanism/rewriteSynthesizedAttribute.C
-Scheduled for removal  AST_RewiteMechanism/rewriteSynthesizedAttributeTemplates.C
-Scheduled for removal  AST_RewiteMechanism/rewriteTreeTraversal.C
-Scheduled for removal  AST_RewiteMechanism/rewriteTypeDeclaration.C
-Scheduled for removal  AST_RewiteMechanism/test1.C
-Scheduled for removal  AST_RewiteMechanism/testExample1.C
-Scheduled for removal  AST_RewiteMechanism/testNewRewrite.C
-Scheduled for removal  AST_RewiteMechanism/testNewRewrite.h
-Scheduled for removal  AST_RewiteMechanism/testRewritePermutations.C
-Scheduled for removal  AST_RewiteMechanism/testRewriteReplacementPermutations.C
-Scheduled for removal  docs/ROSE/AMR_Library.tex
-Scheduled for removal  docs/ROSE/AST_Rewrite.tex
-Scheduled for removal  docs/ROSE/AST_Tree_Traversal.tex
-Scheduled for removal  docs/ROSE/Acknowledgments.tex
-Scheduled for removal  docs/ROSE/Appendix.tex
-Scheduled for removal  docs/ROSE/Array_Class.tex
-Scheduled for removal  docs/ROSE/Basics_Of_Array_Class.tex
-Scheduled for removal  docs/ROSE/Bibliography.tex
-Scheduled for removal  docs/ROSE/Copyright.tex
-Scheduled for removal  docs/ROSE/Design_Of_ROSE.tex
-Scheduled for removal  docs/ROSE/Design_Of_ROSE.tex.b00
-Scheduled for removal  docs/ROSE/Design_Of_ROSE.tex.b01
-Scheduled for removal  docs/ROSE/Design_Of_ROSE.tex.b02
-Scheduled for removal  docs/ROSE/Examples.tex
-Scheduled for removal  docs/ROSE/Forward.tex
-Scheduled for removal  docs/ROSE/Glossary.tex
-Scheduled for removal  docs/ROSE/GrammarSpecificationExample.tex
-Scheduled for removal  docs/ROSE/GrammarSpecificationExample.tex.b00
-Scheduled for removal  docs/ROSE/GrammarSpecificationExample.tex.b01
-Scheduled for removal  docs/ROSE/Implementation.tex
-Scheduled for removal  docs/ROSE/Introduction.tex
-Scheduled for removal  docs/ROSE/Makefile
-Scheduled for removal  docs/ROSE/Overture_Framework.tex
-Scheduled for removal  docs/ROSE/P++_slide.tex
-Scheduled for removal  docs/ROSE/Parallel_Array_Class.tex
-Scheduled for removal  docs/ROSE/Preface.tex
-Scheduled for removal  docs/ROSE/Programming_Model.tex
-Scheduled for removal  docs/ROSE/Quick_Reference_Manual.tex
-Scheduled for removal  docs/ROSE/README
-Scheduled for removal  docs/ROSE/ROSE_Organization.txt
-Scheduled for removal  docs/ROSE/Reference.tex
-Scheduled for removal  docs/ROSE/Reference_Examples.tex
-Scheduled for removal  docs/ROSE/Requirements.tex
-Scheduled for removal  docs/ROSE/Serial_Array_Class.tex
-Scheduled for removal  docs/ROSE/Tutorial.tex
-Scheduled for removal  docs/ROSE/Tutorial_Guide.tex
-Scheduled for removal  docs/ROSE/common.mk
-Scheduled for removal  docs/ROSE/design.tex
-Scheduled for removal  docs/ROSE/manual.aux
-Scheduled for removal  docs/ROSE/manual.dvi
-Scheduled for removal  docs/ROSE/manual.lof
-Scheduled for removal  docs/ROSE/manual.log
-Scheduled for removal  docs/ROSE/manual.ps
-Scheduled for removal  docs/ROSE/manual.tex
-Scheduled for removal  docs/ROSE/manual.toc
-Scheduled for removal  docs/ROSE/mdi.tex
-Scheduled for removal  docs/ROSE/postscript_example.tex
-Scheduled for removal  docs/ROSE/psfig.tex
-Scheduled for removal  docs/ROSE/ref.tex
-Scheduled for removal  docs/ROSE/task.tex
-Scheduled for removal  docs/ROSE/transformationStatement.def
-Scheduled for removal  docs/Rose/AstRewite/AstRewrite.tex
-Scheduled for removal  docs/Sage_Docs/common-facility.aux
-Scheduled for removal  docs/Sage_Docs/common-facility.tex
-Scheduled for removal  docs/Sage_Docs/common-facility.tex.aux
-Scheduled for removal  docs/Sage_Docs/conventions.aux
-Scheduled for removal  docs/Sage_Docs/conventions.tex
-Scheduled for removal  docs/Sage_Docs/examples.tex
-Scheduled for removal  docs/Sage_Docs/expression.tex
-Scheduled for removal  docs/Sage_Docs/global.aux
-Scheduled for removal  docs/Sage_Docs/global.tex
-Scheduled for removal  docs/Sage_Docs/index.html
-Scheduled for removal  docs/Sage_Docs/manual.aux
-Scheduled for removal  docs/Sage_Docs/manual.dvi
-Scheduled for removal  docs/Sage_Docs/manual.log
-Scheduled for removal  docs/Sage_Docs/manual.tex
-Scheduled for removal  docs/Sage_Docs/overview.aux
-Scheduled for removal  docs/Sage_Docs/overview.tex
-Scheduled for removal  docs/Sage_Docs/sage2.aux
-Scheduled for removal  docs/Sage_Docs/sage2.dvi
-Scheduled for removal  docs/Sage_Docs/sage2.log
-Scheduled for removal  docs/Sage_Docs/sage2.tex
-Scheduled for removal  docs/Sage_Docs/scanner-output.tex
-Scheduled for removal  docs/Sage_Docs/source-structure.aux
-Scheduled for removal  docs/Sage_Docs/source-structure.tex
-Scheduled for removal  docs/Sage_Docs/source-structure.tex.aux
-Scheduled for removal  docs/Sage_Docs/statement.aux
-Scheduled for removal  docs/Sage_Docs/statement.tex
-Scheduled for removal  docs/Sage_Docs/symbol.tex
-Scheduled for removal  docs/Sage_Docs/type.tex
-Scheduled for removal  docs/Sage_Docs/unparse.tex
********* WARNINGS *********
********* ERRORS *********
	

2003-10-16 Markus Schordan 0.5.35a
	* Added class AstProcessingLib/AstRestructuring
	    - immediateReplace(SgNode*,string) (uses the Rewrite system)
            - unparserReplace(SgExpression* node, string s) (allows to modify expressions. The unparser
	         unparses the string s instead of the subtree with node 'node' as root node. 
	* Deactivated pdf file generation in rewrite system (ASTFragmentContainer.C)
	  (this causes too many errors in valgrind due to uninitialized values in AST nodes,
	   needs to be fixed in ROSETTA: if no constructor is generated, values are not initialized!)
        * Added function 'string SgNode::unparseToCompleteString()'
	  - The string returned includes all whitespaces and comments
	  - added set_SkipWhitespaces, unset_SkipWhitespaces, SkipWhitespaces to SgUnparse_Info
	  - adapted globalUnparseToString to use this new functions but ensure the original behaviour
	    of unparseToString(), which does not unparse comments and whitespaces
        * Fixed Dependencies in AstProcessingLib/Makefile.am
        * Changed algorithm for selection of successors in selectReverseBranchSuccessors
	* added CocoPreprocessor (only used for grammar-based transformations)
	* added Grammar-based OpenMP transformation in ROSE/ContainerParallelizer
	  - CPTransformation contains Coco grammars
	  - the generated abstract parser modifies the AST by using AstRestructure
	  - it uses the analysis in CPAnalysis
	* fixed Analysis/Makefile.am (SUBDIRS was empty, make dist failed)
	* fixed LoopProcessing/Makefile.am (SUBDIRS was empty, make dist failed)

********* TESTED with **************
automake (GNU automake) 1.5
autoconf (GNU Autoconf) 2.53
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   AST_RewiteMechanism/ASTFragmentRequirementStrings.C
>Locally modified   Analysis/Makefile.am
>Locally modified   AstProcessingLib/AgProcessing.C
>Locally modified   AstProcessingLib/AgProcessing.h
>Locally modified   AstProcessingLib/Ast.C
>Locally modified   AstProcessingLib/Ast.h
>Locally modified   AstProcessingLib/AstNodeScanner.C
>Locally modified   AstProcessingLib/AstNodeScanner.h
>Locally modified   AstProcessingLib/AstPDFGeneration.C
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
>Locally modified   AstProcessingLib/AstSuccessorsSelectors.h
>Locally modified   AstProcessingLib/Makefile.am
>Locally modified   ContainerParallelizer/Makefile.am
>Locally modified   ContainerParallelizer/CPAnalysis/TestParallelLoop.C
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   MSTL/PDFGeneration.h
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   msDevelopment/Makefile.am
>Locally modified   msDevelopment/mscomp.C
>Locally modified   msDevelopment/test5.C
>Locally modified   src/rose.h
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparser.C
>Locally modified   tools/Makefile.am
>Locally modified   tools/README
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      AstProcessingLib/AstClearVisitFlags.C
+Scheduled for add      AstProcessingLib/AstClearVisitFlags.h
+Scheduled for add      AstProcessingLib/AstRestructure.C
+Scheduled for add      AstProcessingLib/AstRestructure.h
+Scheduled for add      AstProcessingLib/CocoPreprocessor/Makefile.am
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agpp.atg
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agpp.cpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agppc.hpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agppe.hpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agppp.cpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agppp.hpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agpps.cpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/agpps.hpp
+Scheduled for add      AstProcessingLib/CocoPreprocessor/compile
+Scheduled for add      AstProcessingLib/CocoPreprocessor/compiler.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/parser_c.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/parser_h.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/scan_c.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/scan_h.frm
+Scheduled for add      AstProcessingLib/CocoPreprocessor/collect.c
+Scheduled for add      AstProcessingLib/CocoPreprocessor/collect.h
+Scheduled for add      AstProcessingLib/CocoPreprocessor/cra.h
+Scheduled for add      AstProcessingLib/CocoPreprocessor/crt.h
+Scheduled for add      AstProcessingLib/CocoPreprocessor/crx.h
+Scheduled for add      AstProcessingLib/CocoPreprocessor/set.c
+Scheduled for add      AstProcessingLib/CocoPreprocessor/set.h
+Scheduled for add      ContainerParallelizer/Container.annot
+Scheduled for add      ContainerParallelizer/ContainerTransformer.C
+Scheduled for add      ContainerParallelizer/Function.annot
+Scheduled for add      ContainerParallelizer/STLOpenMPTransformation.C
+Scheduled for add      ContainerParallelizer/UserDefList.C
+Scheduled for add      ContainerParallelizer/UserDefList.h
+Scheduled for add      ContainerParallelizer/UserDefList2.C
+Scheduled for add      ContainerParallelizer/UserDefList2b.C
+Scheduled for add      ContainerParallelizer/UserDefList2c.C
+Scheduled for add      ContainerParallelizer/UserDefList2d.C
+Scheduled for add      ContainerParallelizer/UserDefList3.C
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformation.atg
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformation.h
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformationCocoCodes.h
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformationCocoErrorMessages.h
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformationParser.C
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformationParser.h
+Scheduled for add      ContainerParallelizer/CPTransformation/BodyTransformationParser_Declarations.h
+Scheduled for add      ContainerParallelizer/CPTransformation/Makefile.am
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformation.atg
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformationCocoCodes.h
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformationCocoErrorMessages.h
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.C
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser.h
+Scheduled for add      ContainerParallelizer/CPTransformation/OmpLoopRATransformationParser_Declarations.h
+Scheduled for add      ContainerParallelizer/CPTransformation/compiler.frm
+Scheduled for add      ContainerParallelizer/CPTransformation/notes.txt
+Scheduled for add      ContainerParallelizer/CPTransformation/parser_c.frm
+Scheduled for add      ContainerParallelizer/CPTransformation/parser_h.frm
+Scheduled for add      msDevelopment/rev_test1.C
+Scheduled for add      msDevelopment/rev_test2.C
+Scheduled for add      msDevelopment/test6.C
+Scheduled for add      msDevelopment/test7.C
+Scheduled for add      msDevelopment/UserDefList.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformation.atg
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformation.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformation.lst
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformationCocoCodes.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformationCocoErrorMessages.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformationParser.C
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformationParser.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformationParser_Declarations.h
+Scheduled for add      msDevelopment/OmpTransformations/BodyTransformation_pp.atg
+Scheduled for add      msDevelopment/OmpTransformations/Makefile.am
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformation.atg
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformationCocoCodes.h
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformationCocoErrorMessages.h
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformationParser.C
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformationParser.h
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformationParser_Declarations.h
+Scheduled for add      msDevelopment/OmpTransformations/OmpLoopRATransformation_pp.atg
+Scheduled for add      msDevelopment/OmpTransformations/compiler.frm
+Scheduled for add      msDevelopment/OmpTransformations/notes.txt
+Scheduled for add      msDevelopment/OmpTransformations/parser_c.frm
+Scheduled for add      msDevelopment/OmpTransformations/parser_h.frm
+Scheduled for add      msDevelopment/OmpTransformations/sgnode.cpp
+Scheduled for add      msDevelopment/OmpTransformations/sgnodep.cpp
+Scheduled for add      msDevelopment/OmpTransformations/sgnodep.hpp
+Scheduled for add      tools/cocorpp
+Scheduled for add      tools/pragmarize
********* Files Scheduled to be removed *********
-Scheduled for removal  coco/cocor
-Scheduled for removal  msDevelopment/OmpLoop.atg
-Scheduled for removal  msDevelopment/OmpLoopCocoCodes.h
-Scheduled for removal  msDevelopment/OmpLoopCocoErrorMessages.h
-Scheduled for removal  msDevelopment/OmpLoopParser.C
-Scheduled for removal  msDevelopment/OmpLoopParser.h
-Scheduled for removal  msDevelopment/OmpLoop_pp.atg
-Scheduled for removal  msDevelopment/astprocessingdoc_example1.C
-Scheduled for removal  msDevelopment/astprocessingdoc_example2.C
-Scheduled for removal  msDevelopment/generateDocumentationPS
-Scheduled for removal  msDevelopment/generatejmlc03PS
-Scheduled for removal  msDevelopment/jmlc03_prog1.C
-Scheduled for removal  msDevelopment/jmlc03_prog2.C
-Scheduled for removal  msDevelopment/myFastMakeAll
-Scheduled for removal  msDevelopment/myMakeall

2003-09-22 Qing Yi 0.5.34a
 . Fixed bugs in LoopProcessing and improved dependence analysis. Also added BreakupStatement
   transformation for rmatmult3.c in IRS and added innermost loop fission transformation.

  . Added directory "Analysis", which should contain general analysis of the AST. right now it
    containers a AST interface class CPPAstInterface.C and StmtInfoAnal.C (collect mod, read and
    function invocation info from a AST tree)

  . Added directory ContainerParallelizer and ContainerParallelizer/CPAnalysis, which includes
    analysis functions for automatic parallelization of user defined containers (ref LCPC'03).

********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.52h
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   LoopProcessing/AstInterface.C
>Locally modified   LoopProcessing/LoopProcessor.C
>Locally modified   LoopProcessing/LoopTransformInterface.C
>Locally modified   LoopProcessing/computation/LoopTree.C
>Locally modified   LoopProcessing/computation/LoopTreeBuild.h
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.C
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.h
>Locally modified   LoopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   LoopProcessing/computation/LoopTreeLocality.C
>Locally modified   LoopProcessing/depGraph/DepGraphBuild.C
>Locally modified   LoopProcessing/depGraph/DepGraphBuild.h
>Locally modified   LoopProcessing/depInfo/DepInfo.C
>Locally modified   LoopProcessing/depInfo/DepInfo.h
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.C
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.h
>Locally modified   LoopProcessing/depInfo/DepInfoAnalImpl.C
>Locally modified   LoopProcessing/depInfo/StmtDepAnal.C
>Locally modified   LoopProcessing/driver/BlockingAnal.h
>Locally modified   LoopProcessing/driver/FusionAnal.C
>Locally modified   LoopProcessing/driver/FusionAnal.h
>Locally modified   LoopProcessing/driver/InterchangeAnal.h
>Locally modified   LoopProcessing/driver/LoopTransformOptions.C
>Locally modified   LoopProcessing/driver/LoopTransformOptions.h
>Locally modified   LoopProcessing/driver/Makefile.am
>Locally modified   LoopProcessing/driver/TransformComputation.C
>Locally modified   LoopProcessing/outsideInterface/AstInterface.h
>Locally modified   LoopProcessing/outsideInterface/LoopTransformInterface.h
>Locally modified   LoopProcessing/slicing/CompSliceDepGraph.C
>Locally modified   LoopProcessing/slicing/DependenceHoisting.C
>Locally modified   LoopProcessing/support/DoublyLinkedList.h
>Locally modified   LoopProcessing/support/ProcessAstTree.h
>Locally modified   LoopProcessing/support/ProcessLoopTree.h
>Locally modified   LoopProcessing/symbolicVal/SymbolicExpr.C
>Locally modified   LoopProcessing/symbolicVal/SymbolicMultiply.h
>Locally modified   LoopProcessing/symbolicVal/SymbolicPlus.h
>Locally modified   LoopProcessing/symbolicVal/SymbolicUnwrapCond.C
>Locally modified   LoopProcessing/test/Makefile.am
>Locally modified   LoopProcessing/test/TestLoopProcessor.C
>Locally modified   LoopProcessing/test/rose_tridvpk.C
>Locally modified   ROSETTA/Grammar/Statement.code
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      Analysis/CPPAstInterface.C
+Scheduled for add      Analysis/CPPAstInterface.h
+Scheduled for add      Analysis/Makefile.am
+Scheduled for add      Analysis/StmtInfoAnal.C
+Scheduled for add      Analysis/StmtInfoAnal.h
+Scheduled for add      ContainerParallelizer/Makefile.am
+Scheduled for add      ContainerParallelizer/CPAnalysis/ContainerAnalyzer.C
+Scheduled for add      ContainerParallelizer/CPAnalysis/Makefile.am
+Scheduled for add      ContainerParallelizer/CPAnalysis/TestParallelLoop.C
+Scheduled for add      ContainerParallelizer/CPAnalysis/TestParallelLoop.h
+Scheduled for add      ContainerParallelizer/CPAnalysis/UserSpec.h
+Scheduled for add      LoopProcessing/driver/BreakupStatement.C
+Scheduled for add      LoopProcessing/driver/PreTransformation.h
+Scheduled for add      LoopProcessing/test/rmatmult3.C
+Scheduled for add      LoopProcessing/test/rose_rmatmult3.C
********* Files Scheduled to be removed *********
-Scheduled for removal  LoopProcessing/driver/LoopSlicingOptions.h
********* WARNINGS *********
********* ERRORS *********

2003-08-21 Qing Yi 0.5.33a
 . Added ExamplePreprocessors/AstCopyReplTester/astCopyReplTest.C, which tests the deep copy
   and statement replacement implementations in SAGE on the input program.
 . Added LoopProcessing/test/TestLoopProcessor.C and
   LoopProcessing/test/(mm.C, lufac.C and tridvpk.C), which test the loop blocking and
   fusion implementations.
 . Fixed bugs in LoopProcessing, and changed the interface of DepInfo analysis, split
   the analysis implementation out of DepInfoAnal.C and into DepInfoAnalImpl.C.
 . In ROSETTA/Statement.code, rewrote interfaces and implementations for insert_statement,
   replace_statement and remove_statement. Fixed the last checkin of replace_statement,
   which implicitly extract all statements from a replacing basic block. Basic blocks can
   now be processed as a normal statement, and to allow using basic block as a statement
   list, we also provide an interface named insert/replace_statement_from_basicBlock.
 . In ROSETTA/src/(grammarString.C, terminal.C), fixed bugs in last checkin of deep copy
   for variable declarations.
 . In ROSETTA/src/statement.C, removed the original editting of COMMON_INSERT_STATEMENT
   because they are no longer necessary (with the new implementation of insert_statement).
       
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.52h
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   makelinks
>Locally modified   ExamplePreprocessors/Makefile.am
>Locally modified   LoopProcessing/AstInterface.C
>Locally modified   LoopProcessing/HackTemplate.C
>Locally modified   LoopProcessing/LoopProcessor.C
>Locally modified   LoopProcessing/LoopTransformInterface.C
>Locally modified   LoopProcessing/Makefile.am
>Locally modified   LoopProcessing/computation/LoopTree.C
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.C
>Locally modified   LoopProcessing/computation/LoopTreeDepComp.h
>Locally modified   LoopProcessing/computation/LoopTreeDummyNode.C
>Locally modified   LoopProcessing/computation/LoopTreeLocality.C
>Locally modified   LoopProcessing/computation/LoopTreeObserver.h
>Locally modified   LoopProcessing/depGraph/DepGraphBuild.C
>Locally modified   LoopProcessing/depInfo/DepInfo.C
>Locally modified   LoopProcessing/depInfo/DepInfo.h
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.C
>Locally modified   LoopProcessing/depInfo/DepInfoAnal.h
>Locally modified   LoopProcessing/depInfo/Makefile.am
>Locally modified   LoopProcessing/depInfo/StmtDepAnal.C
>Locally modified   LoopProcessing/driver/TransformComputation.C
>Locally modified   LoopProcessing/graphs/GraphInterface.h
>Locally modified   LoopProcessing/graphs/GraphTemplate.h
>Locally modified   LoopProcessing/outsideInterface/AstInterface.h
>Locally modified   LoopProcessing/outsideInterface/LoopTransformInterface.h
>Locally modified   LoopProcessing/slicing/CompSlice.C
>Locally modified   LoopProcessing/slicing/CompSliceObserver.h
>Locally modified   LoopProcessing/support/ObserveObject.h
>Locally modified   LoopProcessing/support/ProcessAstTree.h
>Locally modified   LoopProcessing/support/ProcessLoopTree.h
>Locally modified   ROSETTA/Grammar/Expression.code
>Locally modified   ROSETTA/Grammar/Statement.code
>Locally modified   ROSETTA/src/grammarString.C
>Locally modified   ROSETTA/src/statement.C
>Locally modified   ROSETTA/src/terminal.C
>Locally modified   coco/Makefile.in
>Locally modified   coco/cplus2/Makefile.in
>Locally modified   coco/sources/Makefile.in
>Locally modified   src/unparser/unparser.C
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      ExamplePreprocessors/AstCopyReplTester/Makefile.am
+Scheduled for add      ExamplePreprocessors/AstCopyReplTester/astCopyReplTest.C
+Scheduled for add      LoopProcessing/depInfo/DepInfoAnalImpl.C
+Scheduled for add      LoopProcessing/test/Makefile.am
+Scheduled for add      LoopProcessing/test/TestLoopProcessor.C
+Scheduled for add      LoopProcessing/test/lufac.C
+Scheduled for add      LoopProcessing/test/matrix.c
+Scheduled for add      LoopProcessing/test/mm.C
+Scheduled for add      LoopProcessing/test/rose_lufac.C
+Scheduled for add      LoopProcessing/test/rose_mm.C
+Scheduled for add      LoopProcessing/test/rose_tridvpk.C
+Scheduled for add      LoopProcessing/test/tridvpk.C
********* Files Scheduled to be removed *********
-Scheduled for removal  LoopProcessing/mm.C
********* WARNINGS *********
********* ERRORS *********

2003-07-23 Markus Schordan 0.5.32b
	* changed the traversal order of the AstReverse*Processing classes

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.2.8.1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   README_CHECKIN
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstSuccessorsSelectors.C
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/test5.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	********* Files Scheduled to be removed *********
	-Scheduled for removal  msDevelopment/myREADME
	
2003-07-21 Markus Schordan 0.5.32a
	* Modified Ast*Processing classes to allow customization of 
	  traversals. The successors of each node are defined by the function
	  setSuccessorsContainer.
	* Added 8 classes allowing the traversal of the AST in reverse order.
	  The interfaces are the same as in the Ast*Processing classes.
          AstReversePrefixSimpleProcessing
	  AstReversePrefixInhProcessing
	  AstReversePrefixSynProcessing
	  AstReversePrefixInhSynProcessing
	
          AstReverseBranchSimpleProcessing
          AstReverseBranchInhProcessing
          AstReverseBranchSynProcessing
          AstReverseBranchInhSynProcessing
	
	* Added class AstSuccessorsSelectors which containes all
	  functions used to select successors.
	  (except the inFileToTraverse function which is still in SgTreeTraversal)
	* Modified AstTests to test instantiation of all new templated classes.
	* TreeTraversal classes:
	  - removed function traverseUpperContext
	  - added typedef for "SynthesizedAttributesList". Can be used instead of "SubTreeSynthesizedAttributes".
	  - removed traverseMode from all classes
	  - removed struct NodePerfData
	  - removed performanceDataToString()
	  - removed performanceDataInit() 
	  - removed class AstProcessingPerformance

	 * changed class AgProcessing to take a template parameter Parser.
	 * changed Makefile.am in AstProcessingLib to not specify noinst_HEADER
	 * added README_CHECKIN which describes the steps required when
	   checking in a new version of ROSE.

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.2.8.1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AgProcessing.C
	>Locally modified   AstProcessingLib/AgProcessing.h
	>Locally modified   AstProcessingLib/AstNodeScanner.C
	>Locally modified   AstProcessingLib/AstNodeScanner.h
	>Locally modified   AstProcessingLib/AstProcessing.C
	>Locally modified   AstProcessingLib/AstProcessing.h
	>Locally modified   AstProcessingLib/AstSimpleProcessing.C
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   AstProcessingLib/AstTests.h
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   AstProcessingLib/abstractcppgrammar.atg
	>Locally modified   AstProcessingLib/sgnodep.hpp
	>Locally modified   LoopProcessing/LoopTransformInterface.C
	>Locally modified   coco/Makefile.in
	>Locally modified   coco/cplus2/Makefile.in
	>Locally modified   coco/frames/cplus2/parser_h.frm
	>Locally modified   coco/sources/Makefile.in
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/myREADME
	>Locally modified   src/rose.h
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      README_CHECKIN
	+Scheduled for add      AstProcessingLib/AgDefaultError.C
	+Scheduled for add      AstProcessingLib/AgDefaultError.h	
	+Scheduled for add      AstProcessingLib/AstReverseProcessing.C
	+Scheduled for add      AstProcessingLib/AstReverseProcessing.h
	+Scheduled for add      AstProcessingLib/AstReverseSimpleProcessing.C
	+Scheduled for add      AstProcessingLib/AstReverseSimpleProcessing.h
	+Scheduled for add      AstProcessingLib/AstSuccessorsSelectors.C
	+Scheduled for add      AstProcessingLib/AstSuccessorsSelectors.h
	+Scheduled for add      coco/frames/cplus2/ChangeLog.txt
	+Scheduled for add      msDevelopment/OmpLoop.atg
	+Scheduled for add      msDevelopment/OmpLoopCocoCodes.h
	+Scheduled for add      msDevelopment/OmpLoopCocoErrorMessages.h
	+Scheduled for add      msDevelopment/OmpLoopParser.C
	+Scheduled for add      msDevelopment/OmpLoopParser.h
	+Scheduled for add      msDevelopment/OmpLoop_pp.atg
	
2003-07-15 Dan Quinlan 0.5.31a

	* Fixed configuration system to modify the varargs.h file copied
	  into the ROSE compiler header files directory. This permits
	  applications using the varargs macros to compile, but not
	  definition of the macros has yet been found that permits 
	  both EDG and g++ 2.96 to used and the executable work
	  properly.  Presently any file using the varargs macros should
	  skip being processed by ROSE.  No mechanism is presently
	  available to detect and/or skip processing for a specific
	  file.  To be clear ROSE will compile varargs macros, but the
	  generated code from the macro expansion will not execute
	  correctly.  This work was done to support compilation of the
	  IRS code (LLNL test code used with ROSE to test C support).
	  Added ROSE/config/rose_varargs.h to hold new macro definitions
	  for varargs, and sed script (vararg_handling_commands.sed).

	* Added ExamplePreprocessor/OpenMPPreprocessor/parallelSTLQuery.C showing the 
	  analysis associated with how to transform the use of iterators 
	  to use OpenMP for STL like containers (example used for paper).
	  Includes test code parallelSTLQuery_testFile.C as well.

	********* TESTED with **************
	automake (GNU automake) 1.5e
	autoconf (GNU Autoconf) 2.52h
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   README
	>Locally modified   AST_RewriteMechanism/rewrite.C
	>Locally modified   AST_RewriteMechanism/rewrite.h
	>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
	>Locally modified   coco/Makefile.in
	>Locally modified   coco/cplus2/Makefile.in
	>Locally modified   coco/sources/Makefile.in
	>Locally modified   config/Makefile.am
	>Locally modified   config/create_system_headers
	>Locally modified   config/generate-backend-compiler-specific-headers.m4
	>Locally modified   dqDevelopmentDirectory/Makefile.am
	>Locally modified   dqDevelopmentDirectory/test2003_19.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	********* Files Scheduled to be removed *********
	********* WARNINGS *********
	********* ERRORS *********

2003-07-10 Qing Yi 0.5.30b

1. Changes related to file_info for variable and function declarations
   in sage_gen_be.C:
    - fixed file_info fields for variable and function declarations so that
      they contain declaration positions in the original code instead
      of the corresponding definition positions.
    - changed the definition pointers in variable and function declarations:
      set the definition pointer to NULL unless the declaration is also a
      definition in the original file (this matches the the traversal order
      of AST with the original source file).
    - For function declarations, a new forward pointer is added for
      retrieving the definitions of the function declarations.
2. Changes to LoopProcessing code
   - added dynamic tuning for loop fusion
   - fixed bugs
   - added documentation
3. Changes to ROSETTA
   - added configurable tree-copy functionality to SAGE AST (member function 'copy'
     with configurations SgSHALLOW_COPY and SgTREE_COPY).
   - filled in implementations for replacing statement and expression subtrees, including
     member functions 'replace_statement' in SgStatement and 'replace_expression' in
     SgExpression.
   - fixed bugs in sharing Sgfile_info at SgExpressionRoot.
   - removed redundant pointers to expressions in SgForStatement. Accesses to increment and
     test expressions in SgForStatement now go through the corresponding ExpressionRoots.
4. fixed two bugs in unparse_format.C and unparse_stmt.C

2003-07-02 Markus Schordan 0.5.30a

	* added abstract C++ grammar parser (generated with Coco)
	  - the grammar is tested in all tests
	  - I've checked in the generated files (coco is not invoked yet)
	* added Coco (a LL(1) parser tool)
	* added some AST Fixes to AstFixes.C
	  - SgNewExp had sometimes the SgConstructorInitializer not set (this is fixed
	    as part of the SAGE/AstFixes.[hC] (the problem only shows up in 2 test files!)

	* Changes of traversal:
	  - TypedefDeclaration: 'type' changed from TYPE_TRAVERSAL to DEF2TYPE_TRAVERSAL
	  - SgNamedType: changed member 'declaration' 
	    from DEF_TRAVERSAL to NO_TRAVERSAL
	    (when including type information this was a cycle in the traversal)
	  - SgFunctionParameterTypeList: changed member 'arguments' from
	    TYPE_TRAVERSAL to DEF2TYPE_TRAVERSAL.
	  - SgName: 'TemplateArgs': changed from DEF_TRAVERSAL to NO_TRAVERSAL
	            'TemplateParams': changed from DEF_TRAVERSAL to NO_TRAVERSAL
	  - TypedefSeq:'typedefs': changed from TYPE_TRAVERSAL to DEF2TYPE_TRAVERSAL
	  - DefaultSymbol:'type': changed from DEF_TRAVERSAL to DEF2TYPE_TRAVERSAL
	  - FunctionTypeSymbol: 'type' changed from DEF_TRAVERSAL to DEF2TYPE_TRAVERSAL
	  - Unparse_Info: 'type' changed from DEF_TRAVERSAL to NO_TRAVERSAL
	  - Unparse_Info: 'current_context' changed from DEF_TRAVERSAL to NO_TRAVERSAL

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.2.8.1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   Makefile.am
	>Locally modified   configure.in
	>Locally modified   AST_RewriteMechanism/Makefile.am
	>Locally modified   AstProcessingLib/AstProcessing.C
	>Locally modified   AstProcessingLib/AstProcessing.h
	>Locally modified   AstProcessingLib/AstSimpleProcessing.h
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   AstProcessingLib/AstTests.h
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am >Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/exampleMakefile.in
	>Locally modified   ROSETTA/src/Makefile.am
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/grammar.h
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   ROSETTA/src/symbol.C
	>Locally modified   ROSETTA/src/type.C
	>Locally modified   ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
	>Locally modified   SAGE/AstFixes.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   config/Makefile.for.ROSE.includes.and.libs
	>Locally modified   docs/Rose/AstProcessing/AstProcessing.tex
	>Locally modified   dqDevelopmentDirectory/Makefile.am
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/test4.C
	>Locally modified   src/Makefile.am
	>Locally modified   src/rose.h
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AgProcessing.C
	+Scheduled for add      AstProcessingLib/AgProcessing.h
	+Scheduled for add      AstProcessingLib/Ast.C
	+Scheduled for add      AstProcessingLib/Ast.h
	+Scheduled for add      AstProcessingLib/AstNodePtrs.C
	+Scheduled for add      AstProcessingLib/AstNodePtrs.h
	+Scheduled for add      AstProcessingLib/AstNodeScanner.C
	+Scheduled for add      AstProcessingLib/AstNodeScanner.h
	+Scheduled for add      AstProcessingLib/abstractcppgrammar.atg
	+Scheduled for add      AstProcessingLib/sgnode.cpp
	+Scheduled for add      AstProcessingLib/sgnodec.hpp
	+Scheduled for add      AstProcessingLib/sgnodee.hpp
	+Scheduled for add      AstProcessingLib/sgnodep.cpp
	+Scheduled for add      AstProcessingLib/sgnodep.hpp
	+Scheduled for add      AstProcessingLib/sgnodes.hpp
	+Scheduled for add      coco/Coco.Report.ps
	+Scheduled for add      coco/Coco.Report.ps.Z
	+Scheduled for add      coco/Makefile.am
	+Scheduled for add      coco/Makefile.in
	+Scheduled for add      coco/Makefile~
	+Scheduled for add      coco/cb.sh
	+Scheduled for add      coco/cocor
	+Scheduled for add      coco/cocorc17.tgz
	+Scheduled for add      coco/dos2unix.sh
	+Scheduled for add      coco/dos2unix.uue
	+Scheduled for add      coco/history
	+Scheduled for add      coco/read.me
	+Scheduled for add      coco/readme.1st
	+Scheduled for add      coco/unix.mk
	+Scheduled for add      coco/cplus2/Makefile.am
	+Scheduled for add      coco/cplus2/Makefile.in
	+Scheduled for add      coco/cplus2/cr_abs.cpp
	+Scheduled for add      coco/cplus2/cr_abs.hpp
	+Scheduled for add      coco/cplus2/cr_error.cpp
	+Scheduled for add      coco/cplus2/cr_error.hpp
	+Scheduled for add      coco/cplus2/cr_parse.cpp
	+Scheduled for add      coco/cplus2/cr_parse.hpp
	+Scheduled for add      coco/cplus2/cr_scan.cpp
	+Scheduled for add      coco/cplus2/cr_scan.hpp
	+Scheduled for add      coco/cplus2/unix.mk
	+Scheduled for add      coco/docs/coco.use
	+Scheduled for add      coco/docs/cocol
	+Scheduled for add      coco/docs/cocol.ps
	+Scheduled for add      coco/docs/cocor.1
	+Scheduled for add      coco/frames/compiler.frm
	+Scheduled for add      coco/frames/parser_c.frm
	+Scheduled for add      coco/frames/parser_h.frm
	+Scheduled for add      coco/frames/scan_c.frm
	+Scheduled for add      coco/frames/scan_h.frm
	+Scheduled for add      coco/frames/cplus2/compiler.frm
	+Scheduled for add      coco/frames/cplus2/parser_c.frm
	+Scheduled for add      coco/frames/cplus2/parser_h.frm
	+Scheduled for add      coco/frames/cplus2/scan_c.frm
	+Scheduled for add      coco/frames/cplus2/scan_h.frm
	+Scheduled for add      coco/samples/adacs.atg
	+Scheduled for add      coco/samples/c.atg
	+Scheduled for add      coco/samples/calc.atg
	+Scheduled for add      coco/samples/calc.inp
	+Scheduled for add      coco/samples/cdecl.inp
	+Scheduled for add      coco/samples/cdecl1.atg
	+Scheduled for add      coco/samples/cdecl2.atg
	+Scheduled for add      coco/samples/cdecl3.atg
	+Scheduled for add      coco/samples/clang.inp
	+Scheduled for add      coco/samples/clang1.atg
	+Scheduled for add      coco/samples/clang2.atg
	+Scheduled for add      coco/samples/expr.atg
	+Scheduled for add      coco/samples/expr.inp
	+Scheduled for add      coco/samples/microada.atg
	+Scheduled for add      coco/samples/mod2.atg
	+Scheduled for add      coco/samples/oberon.atg
	+Scheduled for add      coco/samples/pascal.atg
	+Scheduled for add      coco/samples/pimmod2.atg
	+Scheduled for add      coco/samples/umbriel1.atg
	+Scheduled for add      coco/samples/umbriel2.atg
	+Scheduled for add      coco/sources/Makefile.am
	+Scheduled for add      coco/sources/Makefile.in
	+Scheduled for add      coco/sources/collect.c
	+Scheduled for add      coco/sources/collect.h
	+Scheduled for add      coco/sources/cr.atg
	+Scheduled for add      coco/sources/cr.c
	+Scheduled for add      coco/sources/cr.frm
	+Scheduled for add      coco/sources/cra.c
	+Scheduled for add      coco/sources/cra.h
	+Scheduled for add      coco/sources/crc.h
	+Scheduled for add      coco/sources/cre.h
	+Scheduled for add      coco/sources/crf.c
	+Scheduled for add      coco/sources/crf.h
	+Scheduled for add      coco/sources/crp.c
	+Scheduled for add      coco/sources/crp.h
	+Scheduled for add      coco/sources/crs.c
	+Scheduled for add      coco/sources/crs.h
	+Scheduled for add      coco/sources/crt.c
	+Scheduled for add      coco/sources/crt.h
	+Scheduled for add      coco/sources/crx.c
	+Scheduled for add      coco/sources/crx.h
	+Scheduled for add      coco/sources/set.c
	+Scheduled for add      coco/sources/set.h
	+Scheduled for add      coco/sources/unix.mk
	+Scheduled for add      coco/sources/test/check
	+Scheduled for add      coco/taste/crossref.c
	+Scheduled for add      coco/taste/crossref.h
	+Scheduled for add      coco/taste/pretty.atg
	+Scheduled for add      coco/taste/pretty.c
	+Scheduled for add      coco/taste/prettypr.c
	+Scheduled for add      coco/taste/prettypr.h
	+Scheduled for add      coco/taste/slang
	+Scheduled for add      coco/taste/slang.atg
	+Scheduled for add      coco/taste/slang.c
	+Scheduled for add      coco/taste/slangc.h
	+Scheduled for add      coco/taste/slange.h
	+Scheduled for add      coco/taste/slangp.c
	+Scheduled for add      coco/taste/slangp.h
	+Scheduled for add      coco/taste/slangs.c
	+Scheduled for add      coco/taste/slangs.c.bak
	+Scheduled for add      coco/taste/slangs.c.new
	+Scheduled for add      coco/taste/slangs.h
	+Scheduled for add      coco/taste/taste.atg
	+Scheduled for add      coco/taste/taste.c
	+Scheduled for add      coco/taste/taste.frm
	+Scheduled for add      coco/taste/tc.c
	+Scheduled for add      coco/taste/tc.h
	+Scheduled for add      coco/taste/test.sla
	+Scheduled for add      coco/taste/test.tas
	+Scheduled for add      coco/taste/tl.c
	+Scheduled for add      coco/taste/tl.h
	+Scheduled for add      coco/taste/unix.mk
	+Scheduled for add      coco/taste/wrong.tas
	+Scheduled for add      coco/taste/xref.atg
	+Scheduled for add      coco/taste/xref.c
	+Scheduled for add      coco/taste/xref.frm
	+Scheduled for add      coco/taste_cp/crossref.cpp
	+Scheduled for add      coco/taste_cp/crossref.hpp
	+Scheduled for add      coco/taste_cp/myslang
	+Scheduled for add      coco/taste_cp/myslang.cpp
	+Scheduled for add      coco/taste_cp/pretty.atg
	+Scheduled for add      coco/taste_cp/prettypr.cpp
	+Scheduled for add      coco/taste_cp/prettypr.hpp
	+Scheduled for add      coco/taste_cp/slang
	+Scheduled for add      coco/taste_cp/slang.atg
	+Scheduled for add      coco/taste_cp/slang.cpp
	+Scheduled for add      coco/taste_cp/slangc.hpp
	+Scheduled for add      coco/taste_cp/slange.hpp
	+Scheduled for add      coco/taste_cp/slangp.cpp
	+Scheduled for add      coco/taste_cp/slangp.hpp
	+Scheduled for add      coco/taste_cp/slangs.cpp
	+Scheduled for add      coco/taste_cp/slangs.hpp
	+Scheduled for add      coco/taste_cp/taste.atg
	+Scheduled for add      coco/taste_cp/taste.frm
	+Scheduled for add      coco/taste_cp/tc.cpp
	+Scheduled for add      coco/taste_cp/tc.hpp
	+Scheduled for add      coco/taste_cp/test.sla
	+Scheduled for add      coco/taste_cp/test.tas
	+Scheduled for add      coco/taste_cp/tl.cpp
	+Scheduled for add      coco/taste_cp/tl.hpp
	+Scheduled for add      coco/taste_cp/unix.mk
	+Scheduled for add      coco/taste_cp/wrong.tas
	+Scheduled for add      coco/taste_cp/xref.atg
	+Scheduled for add      coco/taste_cp/xref.frm
	+Scheduled for add      docs/Rose/AstProcessing/AstProcessingExample.h
	+Scheduled for add      docs/Rose/AstProcessing/MyIndenting.C
	+Scheduled for add      docs/Rose/AstProcessing/MyIndenting.h
	+Scheduled for add      docs/Rose/AstProcessing/MyIndentingMain.C
	+Scheduled for add      docs/Rose/AstProcessing/MyVisitor.C
	+Scheduled for add      docs/Rose/AstProcessing/MyVisitor.h
	+Scheduled for add      docs/Rose/AstProcessing/MyVisitorMain.C
	+Scheduled for add      msDevelopment/test5.C
	+Scheduled for add      msDevelopment/test5.h
	
2003-05-26 Dan Quinlan 0.5.29a
	* Fixed numerous bugs to get B-div IRS code to compile and
	    unparse correctly with ROSE.
	* Added -rose:C_Only option to permit input code to be C instead
	    of C++ (this permits more flexible, less strict, handling).
	* Removed ROSE/src/ROSE_Unparser.h and ROSE/src/ROSE_Unparser.C
	    source files.
	* Fixed numerous bugs in unparser.
	* Fixed numerous bugs EDG/Sage connection code
	* Added traverse to root AST traversal
	    (ROSE/AstProcessingLib/AstTraverseToRoot.h)
	* 
	
********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.52h
g++ 2.96
doxygen 1.3-rc1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   configure.in
>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
>Locally modified   AST_RewriteMechanism/Makefile.am
>Locally modified   AST_RewriteMechanism/rewrite.C
>Locally modified   AstProcessingLib/AstProcessing.h
>Locally modified   AstProcessingLib/Makefile.am
>Locally modified   EDG/src/cmd_line.c
>Locally modified   EDG/src/il.c
>Locally modified   EDG/src/il_alloc.c
>Locally modified   EDG/src/lookup.c
>Locally modified   EDG/src/sageSupport.C
>Locally modified   EDG/src/sage_gen_be.C
>Locally modified   EDG/src/sage_il_to_str.C
>Locally modified   EDG/src/types.c
>Locally modified   ExamplePreprocessors/BabelPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_01.C
>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_02.C
>Locally modified   QueryLibs/BooleanQuery/Makefile.am
>Locally modified   QueryLibs/BooleanQuery/booleanQuery.C
>Locally modified   QueryLibs/BooleanQuery/booleanQuery.h
>Locally modified   ROSETTA/Grammar/Support.code
>Locally modified   ROSETTA/src/grammar.C
>Locally modified   ROSETTA/src/grammar.h
>Locally modified   ROSETTA/src/support.C
>Locally modified   ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
>Locally modified   SAGE/AstFixes.C
>Locally modified   SAGE/AstFixes.h
>Locally modified   config/Makefile.for.ROSE.includes.and.libs
>Locally modified   dqDevelopmentDirectory/Makefile.am
>Locally modified   dqDevelopmentDirectory/preprocessor.C
>Locally modified   dqDevelopmentDirectory/test2003_08.C
>Locally modified   dqDevelopmentDirectory/test2003_10.C
>Locally modified   msDevelopment/Makefile.am
>Locally modified   src/Makefile.am
>Locally modified   src/sourceLocationInheritedAttribute.h
>Locally modified   src/transformationSupport.C
>Locally modified   src/unparser/modified_sage.C
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_format.C
>Locally modified   src/unparser/unparse_format.h
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparse_type.C
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/example_support.c
+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/nanos.h
+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/nanosBug.C
+Scheduled for add      dqDevelopmentDirectory/astAttributeTest.C
+Scheduled for add      dqDevelopmentDirectory/blkgen.c
+Scheduled for add      dqDevelopmentDirectory/ctloutput.c
+Scheduled for add      dqDevelopmentDirectory/printattr.c
+Scheduled for add      dqDevelopmentDirectory/query_timer.c
+Scheduled for add      dqDevelopmentDirectory/rgst_types.c
+Scheduled for add      dqDevelopmentDirectory/sort2.c
+Scheduled for add      dqDevelopmentDirectory/test2003_09.h
+Scheduled for add      dqDevelopmentDirectory/test2003_11.C
+Scheduled for add      dqDevelopmentDirectory/test2003_12.C
+Scheduled for add      dqDevelopmentDirectory/test2003_12.h
+Scheduled for add      dqDevelopmentDirectory/test2003_13.C
+Scheduled for add      dqDevelopmentDirectory/test2003_14.C
+Scheduled for add      dqDevelopmentDirectory/test2003_14.h
+Scheduled for add      dqDevelopmentDirectory/test2003_15.C
+Scheduled for add      dqDevelopmentDirectory/test2003_16.C
+Scheduled for add      dqDevelopmentDirectory/test2003_17.C
+Scheduled for add      dqDevelopmentDirectory/test2003_18.C
+Scheduled for add      dqDevelopmentDirectory/test2003_19.C
+Scheduled for add      dqDevelopmentDirectory/test2003_20.C
+Scheduled for add      dqDevelopmentDirectory/test2003_21.C
+Scheduled for add      dqDevelopmentDirectory/typedefExamples.C
+Scheduled for add      dqDevelopmentDirectory/userexitfn.c
********* Files Scheduled to be removed *********
-Scheduled for removal  src/ROSE_Unparser.C
-Scheduled for removal  src/ROSE_Unparser.h
********* WARNINGS *********
********* ERRORS *********
	

2003-04-29 Qing Yi 0.5.27a
        * added 'LoopProcessing' directory, which implements various loop
	  transformations, including loop interchange, fusion, distribution,
	  and blocking to optimize programs for better locality. For details of
	  the implementation, see the 'Loop Processing' section 
	  (to be included in the ROSE documentation, soon).
	* added another class, UnparseFormat, into the unparser code to
	  facilitate flexible formating of the output code. This class
	  can be configured to accept outside instructions on the line
	  and column numbers of SgLocatedNode, and if no such FormatHelp
	  class is provided, it applies a default clean formating. 

********* TESTED with **************
automake (GNU automake) 1.5e
autoconf (GNU Autoconf) 2.52h
g++ 2.96
doxygen 1.2.8.1
TeX (Web2C 7.3.1) 3.14159
LaTeX2HTML Version 2K.1beta (1.47)
********* Locally Modified *********
>Locally modified   ChangeLog
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   ROSETTA/Grammar/Node.code
>Locally modified   src/utility_functions.C
>Locally modified   src/utility_functions.h
>Locally modified   src/unparser/Makefile.am
>Locally modified   src/unparser/modified_sage.C
>Locally modified   src/unparser/unparse_expr.C
>Locally modified   src/unparser/unparse_stmt.C
>Locally modified   src/unparser/unparse_type.C
>Locally modified   src/unparser/unparser.C
>Locally modified   src/unparser/unparser.h
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      LoopProcessing/AstInterface.C
+Scheduled for add      LoopProcessing/HackTemplate.C
+Scheduled for add      LoopProcessing/LoopProcessor.C
+Scheduled for add      LoopProcessing/LoopTransformInterface.C
+Scheduled for add      LoopProcessing/Makefile.am
+Scheduled for add      LoopProcessing/mm.C
+Scheduled for add      LoopProcessing/computation/LoopInfo.h
+Scheduled for add      LoopProcessing/computation/LoopTree.C
+Scheduled for add      LoopProcessing/computation/LoopTree.h
+Scheduled for add      LoopProcessing/computation/LoopTreeBuild.h
+Scheduled for add      LoopProcessing/computation/LoopTreeDepComp.C
+Scheduled for add      LoopProcessing/computation/LoopTreeDepComp.h
+Scheduled for add      LoopProcessing/computation/LoopTreeDummyNode.C
+Scheduled for add      LoopProcessing/computation/LoopTreeDummyNode.h
+Scheduled for add      LoopProcessing/computation/LoopTreeHoldNode.h
+Scheduled for add      LoopProcessing/computation/LoopTreeLocality.C
+Scheduled for add      LoopProcessing/computation/LoopTreeNodeType.h
+Scheduled for add      LoopProcessing/computation/LoopTreeObserver.h
+Scheduled for add      LoopProcessing/computation/LoopTreeOptimize.h
+Scheduled for add      LoopProcessing/computation/LoopTreeShadow.C
+Scheduled for add      LoopProcessing/computation/LoopTreeShadow.h
+Scheduled for add      LoopProcessing/computation/LoopTreeTransform.C
+Scheduled for add      LoopProcessing/computation/LoopTreeTransform.h
+Scheduled for add      LoopProcessing/computation/LoopTreeVarBound.h
+Scheduled for add      LoopProcessing/computation/Makefile.am
+Scheduled for add      LoopProcessing/depGraph/DepGraph.h
+Scheduled for add      LoopProcessing/depGraph/DepGraphBuild.C
+Scheduled for add      LoopProcessing/depGraph/DepGraphBuild.h
+Scheduled for add      LoopProcessing/depGraph/DepGraphTransform.C
+Scheduled for add      LoopProcessing/depGraph/DepGraphTransform.h
+Scheduled for add      LoopProcessing/depGraph/LoopAnalysis.C
+Scheduled for add      LoopProcessing/depGraph/LoopAnalysis.h
+Scheduled for add      LoopProcessing/depGraph/Makefile.am
+Scheduled for add      LoopProcessing/depGraph/TransDepGraph.C
+Scheduled for add      LoopProcessing/depGraph/TransDepGraph.h
+Scheduled for add      LoopProcessing/depInfo/DepEDD.C
+Scheduled for add      LoopProcessing/depInfo/DepEDD.h
+Scheduled for add      LoopProcessing/depInfo/DepInfo.C
+Scheduled for add      LoopProcessing/depInfo/DepInfo.h
+Scheduled for add      LoopProcessing/depInfo/DepInfoAnal.C
+Scheduled for add      LoopProcessing/depInfo/DepInfoAnal.h
+Scheduled for add      LoopProcessing/depInfo/DepInfoSet.C
+Scheduled for add      LoopProcessing/depInfo/DepInfoSet.h
+Scheduled for add      LoopProcessing/depInfo/DepInfoUpdate.h
+Scheduled for add      LoopProcessing/depInfo/DepRel.C
+Scheduled for add      LoopProcessing/depInfo/DepRel.h
+Scheduled for add      LoopProcessing/depInfo/DomainInfo.C
+Scheduled for add      LoopProcessing/depInfo/DomainInfo.h
+Scheduled for add      LoopProcessing/depInfo/DomainInfoUpdate.h
+Scheduled for add      LoopProcessing/depInfo/Makefile.am
+Scheduled for add      LoopProcessing/depInfo/StmtDepAnal.C
+Scheduled for add      LoopProcessing/driver/BlockingAnal.h
+Scheduled for add      LoopProcessing/driver/FusionAnal.C
+Scheduled for add      LoopProcessing/driver/FusionAnal.h
+Scheduled for add      LoopProcessing/driver/InterchangeAnal.C
+Scheduled for add      LoopProcessing/driver/InterchangeAnal.h
+Scheduled for add      LoopProcessing/driver/LoopSlicingOptions.h
+Scheduled for add      LoopProcessing/driver/LoopTransformOptions.C
+Scheduled for add      LoopProcessing/driver/LoopTransformOptions.h
+Scheduled for add      LoopProcessing/driver/Makefile.am
+Scheduled for add      LoopProcessing/driver/TransformComputation.C
+Scheduled for add      LoopProcessing/driver/TypedFusionImpl.C
+Scheduled for add      LoopProcessing/graphs/BaseGraphCreate.h
+Scheduled for add      LoopProcessing/graphs/BaseGraphTemp.h
+Scheduled for add      LoopProcessing/graphs/DGBaseGraphImpl.h
+Scheduled for add      LoopProcessing/graphs/DGBaseGraphTemp.h
+Scheduled for add      LoopProcessing/graphs/Dump.C
+Scheduled for add      LoopProcessing/graphs/GraphGroup.h
+Scheduled for add      LoopProcessing/graphs/GraphInterface.h
+Scheduled for add      LoopProcessing/graphs/GraphScope.h
+Scheduled for add      LoopProcessing/graphs/GraphTemplate.h
+Scheduled for add      LoopProcessing/graphs/GraphUpdate.h
+Scheduled for add      LoopProcessing/graphs/IDGraphCreate.C
+Scheduled for add      LoopProcessing/graphs/IDGraphCreate.h
+Scheduled for add      LoopProcessing/graphs/IDGraphCreateTemp.h
+Scheduled for add      LoopProcessing/graphs/Makefile.am
+Scheduled for add      LoopProcessing/graphs/SCCAnalysis.C
+Scheduled for add      LoopProcessing/graphs/SCCAnalysis.h
+Scheduled for add      LoopProcessing/graphs/TransAnalysis.C
+Scheduled for add      LoopProcessing/graphs/TransAnalysis.h
+Scheduled for add      LoopProcessing/graphs/TypedFusion.C
+Scheduled for add      LoopProcessing/graphs/TypedFusion.h
+Scheduled for add      LoopProcessing/outsideInterface/AstInterface-sage.h
+Scheduled for add      LoopProcessing/outsideInterface/AstInterface.h
+Scheduled for add      LoopProcessing/outsideInterface/LoopTransformInterface.h
+Scheduled for add      LoopProcessing/outsideInterface/Makefile.am
+Scheduled for add      LoopProcessing/outsideInterface/general.h
+Scheduled for add      LoopProcessing/slicing/CompSlice.C
+Scheduled for add      LoopProcessing/slicing/CompSlice.h
+Scheduled for add      LoopProcessing/slicing/CompSliceDepGraph.C
+Scheduled for add      LoopProcessing/slicing/CompSliceDepGraph.h
+Scheduled for add      LoopProcessing/slicing/CompSliceImpl.h
+Scheduled for add      LoopProcessing/slicing/CompSliceLocality.C
+Scheduled for add      LoopProcessing/slicing/CompSliceLocality.h
+Scheduled for add      LoopProcessing/slicing/CompSliceObserver.h
+Scheduled for add      LoopProcessing/slicing/CompSliceRegistry.h
+Scheduled for add      LoopProcessing/slicing/DependenceHoisting.C
+Scheduled for add      LoopProcessing/slicing/Makefile.am
+Scheduled for add      LoopProcessing/support/Adaptors.h
+Scheduled for add      LoopProcessing/support/CountRefHandle.h
+Scheduled for add      LoopProcessing/support/DAG.h
+Scheduled for add      LoopProcessing/support/DirectedGraph.h
+Scheduled for add      LoopProcessing/support/DoublyLinkedList.h
+Scheduled for add      LoopProcessing/support/FunctionObject.h
+Scheduled for add      LoopProcessing/support/IteratorCompound.h
+Scheduled for add      LoopProcessing/support/IteratorTmpl.h
+Scheduled for add      LoopProcessing/support/LatticeElemList.h
+Scheduled for add      LoopProcessing/support/Makefile.am
+Scheduled for add      LoopProcessing/support/Matrix.h
+Scheduled for add      LoopProcessing/support/ObserveObject.h
+Scheduled for add      LoopProcessing/support/ProcessAstTree.h
+Scheduled for add      LoopProcessing/support/ProcessLoopTree.h
+Scheduled for add      LoopProcessing/support/PtrMap.h
+Scheduled for add      LoopProcessing/support/PtrSet.h
+Scheduled for add      LoopProcessing/support/SinglyLinkedList.h
+Scheduled for add      LoopProcessing/support/TreeImpl.h
+Scheduled for add      LoopProcessing/support/const.h
+Scheduled for add      LoopProcessing/symbolicVal/Makefile.am
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicBound.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicCond.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicCond.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicContainVar.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicExpr.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicExpr.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicMultiply.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicOperator.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicOperator.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicPlus.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicSelect.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicUnwrapCond.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicVal.C
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicVal.h
+Scheduled for add      LoopProcessing/symbolicVal/SymbolicVisitor.h
+Scheduled for add      src/unparser/unparse_format.C
+Scheduled for add      src/unparser/unparse_format.h
********* Files Scheduled to be removed *********
********* WARNINGS *********
********* ERRORS *********


2003-04-28 Markus Schordan 0.5.26b
	* added recognition of '\n' for AstAttribute strings in PDF files
	  (PDF requires to position text explicitely)
	* added tool cpp2beauty (uses a C++ beautifier which I found
	  in the internet, the beautifier is not part of ROSE.
	  The beautifier,bcpp, should be installed on your system).
	  bcpp is a C/C++ beautifier
          download bcpp from: http://dickey.his.com/bcpp/bcpp.html
	* Some changes in ROSETTA (does not effect generated code)
	* changed -ll to $(LEXLIB) in ROSE/config/Makefile.for.ROSE.includes.and.libs
	  to use the installed lex/flex lib determined by configure.

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.C
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_01.C
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   config/Makefile.for.ROSE.includes.and.libs
	>Locally modified   tools/Makefile.am
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      tools/cpp2beauty
	+Scheduled for add      tools/indent.cfg
	
2003-04-07 Dan Quinlan Version 0.5.26a
	* fixed numerous problems in the unparser and in the EDG/SAGE
	  connection related to autonomous types. Cases fixed and now
	  tested are in ROSE/dqDevelopmentDirectory/test2003_08.[h,C].
	
	* built fileFiler tool (not yet placed into tool directory) to
	    preprocess input files (source files to ROSE preprocessors) to
	    remove Carriage Returns and optionally expand all tabs.
	    - removing CR's was a bug submitted by Beata which EDG fails
	    to parse.
	    - expanding tabs is important if the column numbers are ever
	    be exact in later work on source code formatting.
	  The C++ program demonstrating the input file processing is
	  automatically built and tested with "make" and "make check"
	  and is in ROSE/dqDevelopmentDirectory/fileFilter.C.

	* worked on the AST rewrite mechanism and fixed numerous bugs
	  found by trying to build new OpenMP preprocessor and finish
	  A++/P++ preprocessor.

	* started work on the OpenMP preprocessor in the 
	  ROSE/ExamplePreprocessors/OpenMPPreprocessor directory.

	  ********* TESTED with **************
	  automake (GNU automake) 1.5e
	  autoconf (GNU Autoconf) 2.52h
	  g++ 2.96
	  doxygen 1.3-rc1
	  TeX (Web2C 7.3.1) 3.14159
	  LaTeX2HTML Version 2K.1beta (1.47)
	  ********* Locally Modified *********
	  >Locally modified   EDG/src/sage_gen_be.C
	  >Locally modified   EDG/src/sage_il_to_str.C
	  >Locally modified   ROSETTA/Grammar/Expression.code
	  >Locally modified   ROSETTA/Grammar/Node.code
	  >Locally modified   ROSETTA/Grammar/Statement.code
	  >Locally modified   ROSETTA/Grammar/Support.code
	  >Locally modified   ROSETTA/Grammar/Type.code
	  >Locally modified   ROSETTA/src/Makefile.am
	  >Locally modified   ROSETTA/src/ROSETTA_macros.h
	  >Locally modified   ROSETTA/src/support.C
	  >Locally modified   ROSETTA/src/type.C
	  >Locally modified   SAGE/AstFixes.C
	  >Locally modified   SAGE/AstFixes.h
	  >Locally modified   SAGE/attachPreprocessingInfo.C
	  >Locally modified   SAGE/generateAST.C
	  >Locally modified   SAGE/insert.C
	  >Locally modified   SAGE/stripWrapper.C
	  >Locally modified   TESTS/CompileTests/A++Code/Makefile.am
	  >Locally modified   dqDevelopmentDirectory/Makefile.am
	  >Locally modified   dqDevelopmentDirectory/test2001_01.C
	  >Locally modified   dqDevelopmentDirectory/test2003_05.C
	  >Locally modified   src/preprocessorSupport.C
	  >Locally modified   src/utility_functions.h
	  >Locally modified   src/unparser/modified_sage.C
	  >Locally modified   src/unparser/unparse_expr.C
	  >Locally modified   src/unparser/unparse_stmt.C
	  >Locally modified   src/unparser/unparse_type.C
	  >Locally modified   src/unparser/unparser.C
	  >Locally modified   src/unparser/unparser.h
	  ********* Needs CVS Update *********


2003-03-20 Markus Schordan 0.5.25a

	* fixed bug in parsing multiple files (error code was only
	  reported for last file parsed)
	* Changed following interfaces:
	  new: SgProject* frontend(int  argc, char** argv).
	  old: SgProject& frontend(int& argc, char** argv, int& errorCode) 
	  The errorCode can be accessed with the SgProject member function 
	  get_frontendErrorCode() 

	  new: int backend(SgProject* project)
	  old: int backend(SgProject& project) 
	  The return value is the error code.
	  The errorCode can also be accessed with the SgProject member function 
	  get_backendErrorCode()

	* added Translator class in Translator.h/C to MSTL to offer an interface
	  for building compiler/translator/preprocessor/transformation tools
	* created CppToCppTranslator, CppToDotTranslator, CppToPdfTranslator
	        RoseTestTranslator classes to roseTranslators.h/C
	* modified DotGenerator, now implemented as CppToDotTranslator
	* modified PdfGenerator, now implemented as CppToPdfTranslator
	
	* set ROSE_LIBS such that it contains all libs that are necessary
	  to link with a preprocessor.
	  - all makefiles in ExamplePreprocessors have been updated
	  - in Makefile.am you can use now: LDADD = $(ROSE_LIBS) 
	  - removed outdated comments in several makefiles

	* added tools cpp2cpp, cpp2dot, cpp2pdf, dot2ps, lsviz in the tools
	  directory. The tools use various preprocessors/translators.
	  ALL tools have a user friendly command line interface
	  All tools conform to the GNU standard, --help gives a description
	  there is a README file in the tools directory that contains more info

	  The tools are installed in the bin directory
	  use configure with --prefix=<MYDIR>,
	  and run 'make install' - the tools will be installed in <MYDIR>/bin.
	  Note that some tools use preprocessors and therefore only
	  work if <MYDIR>/bin is included in $PATH.
	
	* turned off verbose mode in unparser (see unparser.h)
	* turned off ROSE_INTERNAL_DEBUG mode
	* Initial work on allowing to have different ASTs in memory
	  * SgProject and SgFile:
	    * int defaultNumberOfCommandLineArguments is no longer static
	    * char** defaultCommandLineArgumentList is no longer static

	  * SgProject:
	    initial work to allow to have a container of SgProject nodes
	    the default constructor can be used now and parse(argc,argv) needs
	    to be called on such objects. (this separates commandline parsing
	    from invoking the frontend)
	    * added public parse(argc,argv), 
	    initial work to separate general commandline handling from 
	    parsing of single files (does not affect public interface)
	    * added private
	        * processCommandLine(argc,argv)
	        * parseEachInputFile()

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   Makefile.am
	>Locally modified   configure.in
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AST_RewriteMechanism/testExample1.C
	>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
	>Locally modified   AST_RewriteMechanism/testRewriteReplacementPermutations.C
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   ExamplePreprocessors/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/AccessPatternPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/defaultPreprocessor.C
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteExample1.C>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
	>Locally modified   ExamplePreprocessors/PDFGenerator/Makefile.am
	>Locally modified   ExamplePreprocessors/PDFGenerator/pdfGenerator.C
	>Locally modified   ExamplePreprocessors/SvPabloPreprocessor/Makefile.am
	>Locally modified   MSTL/Makefile.am
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   ROSETTA/src/type.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/sage3.h
	>Locally modified   config/Makefile.for.ROSE.includes.and.libs
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   src/Makefile.am
	>Locally modified   src/preprocessorSupport.C
	>Locally modified   src/rose.C
	>Locally modified   src/rose.h
	>Locally modified   src/roseInternal.h
	>Locally modified   src/utility_functions.C
	>Locally modified   src/utility_functions.h
	>Locally modified   src/unparser/unparser.h
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      ExamplePreprocessors/DOTGenerator/Makefile.am
	+Scheduled for add      ExamplePreprocessors/DOTGenerator/dotGenerator.C
	+Scheduled for add      ExamplePreprocessors/DOTGenerator/testdot_01.C
	+Scheduled for add      MSTL/Translator.h
	+Scheduled for add      msDevelopment/generateDocumentationPS
	+Scheduled for add      msDevelopment/generatejmlc03PS
	+Scheduled for add      msDevelopment/myFastMakeAll
	+Scheduled for add      msDevelopment/myREADME
	+Scheduled for add      src/roseTranslators.C
	+Scheduled for add      src/roseTranslators.h
	+Scheduled for add      tools/Makefile.am
	+Scheduled for add      tools/README
	+Scheduled for add      tools/cpp2cpp
	+Scheduled for add      tools/cpp2pdf
	+Scheduled for add      tools/cpp2ps
	+Scheduled for add      tools/dot2ps
	+Scheduled for add      tools/lsviz
	********* Files Scheduled to be removed *********
	-Scheduled for removal  ExamplePreprocessors/DOTGraphGenerator/Makefile.am
	-Scheduled for removal  ExamplePreprocessors/DOTGraphGenerator/dotGraphGenerator.C
	
	
2003-03-06 Dan Quinlan Version 0.5.24a
	* Fixed the parent pointers and implemented tests to verify that
          they are all set correctly. The code that sets and tests the
	  parent pointers is in ROSE/SAGE/AstFix.[h,C].
	* Removed the "SgStatement get_parent()" member function in SgStatement
	* Removed the "SgExpression get_parent()" member function in SgExpression
	* Removed the "SgStatement get_parent()" member function in SgType
	* Removed the "SgStatement get_parent()" member function in SgSymbol
	* Added a single "SgNode* get_parent()" member function to the SgNode class.
	* Modified use of get_parent() member fucntion every where in ROSE
	    to force the cast to SgStatement, SgExpression, SgType, or
	    SgSymbol if required (only required in a few places).
	* Added functionality to set the parent pointers to correct values
	  (initializes uninitialized values and resets values set
	  incorrectly by SAGE).  For debugging purposes, we builds a
	  list internally of nodes that are modified from values set or 
	  unitialized by SAGE.
	* Added test on AST generated by SAGE and modified after AST fixup
	  phase to verify that every node in the AST can be traversed
	  along the chain of parents to reach the SgFile node. This test
	    plus other tests in AstProcessing will be consolidated into
	    the ROSE/SAGE directory later (similarly to the
	    SAGE/AstFix.[h,C]).
	* Added documentation rules to makefiles in ROSE, ROSE/docs, and 
	  ROSE/docs/Rose directories.
	
        ********* TESTED with **************
        automake (GNU automake) 1.5e
        autoconf (GNU Autoconf) 2.52h
        g++ 2.96
        doxygen 1.3-rc1
        TeX (Web2C 7.3.1) 3.14159
        LaTeX2HTML Version 2K.1beta (1.47)
        ********* Locally Modified *********
        >Locally modified   ChangeLog
        >Locally modified   configure.in
        >Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
        >Locally modified   AST_RewriteMechanism/rewrite.C
        >Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
        >Locally modified   AstProcessingLib/AstPDFGeneration.C
        >Locally modified   AstProcessingLib/AstProcessing.C
        >Locally modified   AstProcessingLib/AstProcessing.h
        >Locally modified   AstProcessingLib/AstStatistics.C
        >Locally modified   AstProcessingLib/AstTests.C
        >Locally modified   AstProcessingLib/AstTests.h
        >Locally modified   EDG/src/sage_gen_be.C
        >Locally modified   EDG/src/sage_il_to_str.C
        >Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
        >Locally modified   ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
        >Locally modified   ExamplePreprocessors/BabelPreprocessor/options.C
        >Locally modified   ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
        >Locally modified   ExamplePreprocessors/DataStructurePreprocessor/options.C
        >Locally modified   ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
        >Locally modified   ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
        >Locally modified   ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_01.C
        >Locally modified   MSTL/DOTGeneration.C
        >Locally modified   MSTL/PDFGeneration.C
        >Locally modified   QueryLibs/BooleanQuery/booleanQuery.C
        >Locally modified   ROSETTA/Grammar/Common.code
        >Locally modified   ROSETTA/Grammar/Expression.code
        >Locally modified   ROSETTA/Grammar/LocatedNode.code
        >Locally modified   ROSETTA/Grammar/Node.code
        >Locally modified   ROSETTA/Grammar/Statement.code
        >Locally modified   ROSETTA/Grammar/Support.code
        >Locally modified   ROSETTA/Grammar/Symbol.code
        >Locally modified   ROSETTA/Grammar/Type.code
        >Locally modified   ROSETTA/src/terminal.C
        >Locally modified   SAGE/AstFixes.C
        >Locally modified   SAGE/AstFixes.h
        >Locally modified   SAGE/attachPreprocessingInfo.C
        >Locally modified   SAGE/sage3.h
        >Locally modified   src/rose.C
        >Locally modified   src/sourceLocationInheritedAttribute.C
        >Locally modified   src/transformationSupport.C
        >Locally modified   src/utility_functions.C
        >Locally modified   src/utility_functions.h
        >Locally modified   src/unparser/modified_sage.C
        >Locally modified   src/unparser/unparse_expr.C
        >Locally modified   src/unparser/unparse_stmt.C
        >Locally modified   src/unparser/unparse_type.C
        ********* Needs CVS Update *********
        ********* FILES NEEDING A MERGE *********
        ********* Files Scheduled to be added *********
        +Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/intone.h
        ********* Files Scheduled to be removed *********
        ********* WARNINGS *********
        ********* ERRORS *********

2003-02-27 Markus Schordan 0.5.23a
        * SgForStatement:
	  Changed the order of successors in the traversal to
	  new order: init_stmt, test_expr_root, increment_expr_root, loop_body
	  old order: loop_body, test_expr_root, increment_expr_root, init_stmt
          note: the order in which successors are traversed can be found in
	        <yourcompiletree>/SAGE/Cxx_Cxx_GrammarTreeTraversalAccessEnums.h
	* (experimental) : added statistics to traversal objects
	  the plan is to measure execution times of the 
	  evaluate functions (not finished yet) for types of nodes.

	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstProcessing.h
	>Locally modified   AstProcessingLib/AstSimpleProcessing.h
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   ROSETTA/Grammar/Node.code
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   SAGE/AstFixes.C
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   src/rose.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      msDevelopment/jmlc03_prog2.C	
	+Scheduled for add      msDevelopment/simpleA++.h
	+Scheduled for add      msDevelopment/transformationOptions.h
	
2003-02-25 Dan Quinlan Version 0.5.22a
	* Added Example preprocessor which generates a DOT file from an
	    input application.
	* Added Example preprocessor which generates a PDF file from an
	    input application.
	* Fixed bugs in the AST Rewrite Mechanism
	* Fixed bugs in the ROSE/src/sourceLocationInheritedAttribute.C
	    file to get the location of source constructs correct
	    (required for rewrite mechanism).
	* Added initial OpenMP preprocesor (currently unfinished) as a
	    start on the translation of OpenMP directives.
	* Fixed location of SgPragmaStatement objects within SAGE III AST
	    (fixed in the EDG/SAGE III interface).
	*Modified and added files:

	********* TESTED with **************
	automake (GNU automake) 1.5e
	autoconf (GNU Autoconf) 2.52h
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   configure.in
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AST_RewriteMechanism/Makefile.am
	>Locally modified   AST_RewriteMechanism/rewrite.C
	>Locally modified   AST_RewriteMechanism/rewrite.h
	>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
	>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
	>Locally modified   AST_RewriteMechanism/rewriteTreeTraversal.C
	>Locally modified   AST_RewriteMechanism/testNewRewrite.C
	>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
	>Locally modified   EDG/src/alternativeEdgSageInterface.C
	>Locally modified   EDG/src/displayTree.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   ExamplePreprocessors/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/defaultPreprocessor.C
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteExample1.C
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   TESTS/CompilerOptionsTests/A++Code/Makefile.am
	>Locally modified   dqDevelopmentDirectory/Makefile.am
	>Locally modified   src/pdf_ast.C
	>Locally modified   src/preprocessorSupport.C
	>Locally modified   src/sourceLocationInheritedAttribute.C
	>Locally modified   src/sourceLocationInheritedAttribute.h
	>Locally modified   src/utility_functions.C
	>Locally modified   src/utility_functions.h
	>Locally modified   src/command_line_options/buildCommandLine.C
	>Locally modified   src/unparser/unparse_stmt.C
	>Locally modified   src/unparser/unparser.C
	>Locally modified   src/unparser/unparser_opt.C
	>Locally modified   src/unparser/unparser_opt.h
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      ExamplePreprocessors/DOTGraphGenerator/Makefile.am
	+Scheduled for add      ExamplePreprocessors/DOTGraphGenerator/dotGraphGenerator.C
	+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/Makefile.am
	+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/OpenMPPreprocessor.C
	+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_01.C
	+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_02.C
	+Scheduled for add      ExamplePreprocessors/OpenMPPreprocessor/testOpenMP_03.C
	+Scheduled for add      ExamplePreprocessors/PDFGenerator/Makefile.am
	+Scheduled for add      ExamplePreprocessors/PDFGenerator/pdfGenerator.C
	********* Files Scheduled to be removed *********
	-Scheduled for removal  AST_RewriteMechanism/testRewrite.C
	-Scheduled for removal  AST_RewriteMechanism/testRewrite.h
	********* WARNINGS *********
	********* ERRORS *********

2003-02-17 Dan Quinlan Version 0.5.21a
	* Fixed Sage nodes generated by EDG/Sage III interface code to
	  generate unique Sg_File_Info objects and use the best info
	  possible to generate their Sg_File_Info object.  Since source
	  position information is not available for operators within EDG
	  so the current_source_position is used if it is a valid pointer.
	  As a last resort the NULL_FILE macro is used to generate a
	  Sg_File_Info object.
	* Added directory of tests for testing standard compiler options.
	  The ROSE/TESTS/CompilerOptionsTests/A++Code directory is a copy
	  of the A++ source files, the Makefile has a "make check" rule
	  which tests the "-E" option on the ROSE/src/rose executable (in
	  the compile tree).  The -E option is passed to the backend C++
	  compiler, the makefile runs the preprocessor and directs the
	  output to a new file and compiles that file (to make sure that 
 	  the output of the -E option applied to a preprocessor build
	  using ROSE generates code that can be compiled.
	* Output from cvschk:
	********* TESTED with **************
	automake (GNU automake) 1.5e
	autoconf (GNU Autoconf) 2.52h
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   EDG/src/il_def.h
	>Locally modified   EDG/src/sageFunctionPrototypes.h
	>Locally modified   EDG/src/sageSupport.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   TESTS/Makefile.am
	>Locally modified   dqDevelopmentDirectory/Makefile.am
	>Locally modified   src/rose.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      TESTS/CompilerOptionsTests/Makefile.am
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/A++.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/A++_headers.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/A++_notemplates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/A++_templates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/Makefile.am
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/abstract_op.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/array_domain.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/array_notemplates.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/comm_man.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/comm_man.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/config.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/constants.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/d_op_all.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/data_hash.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/data_hash.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/descriptor.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/descriptor_cache.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/descriptor_notemplates.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/descriptor_notemplates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/descriptor_templates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/dimension_macros.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/domain.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/domain.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/error_checking.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/expression_templates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/f_op_all.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/findNullBlockInEDG.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/i_op_all.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/index.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/index.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/index_operator_notemplates.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/inline_expression_templates.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/inline_func.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/inline_support.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_aggregate.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_aggregate.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_expression.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_expression.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_operand.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_operand.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_statement.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_statement.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_task.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_task.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_taskset.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazy_taskset.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazyarray.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/lazyarray.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/machine.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/max_array_dim.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/mdi_typedef.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/new_operators_notemplates.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/optimization.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/optimization.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/partitioning.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/partitioning.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/rose_abstract_op.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/rose_domain.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/static_initialization.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/test.h
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/testUnparser.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/test_bool.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/where.C
	+Scheduled for add      TESTS/CompilerOptionsTests/A++Code/where.h
	********* Files Scheduled to be removed *********
	********* WARNINGS *********
	********* ERRORS *********
	
2003-02-16 Dan Quinlan Version 0.5.20a
	* Significant additions to the rewrite mechanism
	     - fixed many bugs
	     - built mechanism to construct declarations used in compiling
               intermediate files
	* Modified the attachment of comments and CPP directives to the AST
	* Fixed EDG/SAGE connection to report the ending braces of all
	    block type language constructs (enums, classes, basic blocks).
	    Also fixed the accuracy of the file info objects recorded in
	    many SAGE objects.  Added support for this in SAGE III as well.
	* Many additional bugs fixed through out ROSE and the EDG/SAGE
	    interface.
	* Added additional documentation
	* Added new function to generate Sg_File_Info objects within the
	    EDG/SAGE connection code.
	* Added a "make installcheck" rule (called automatically by "make
	    distcheck" rule.  This new rule tests the use of the
	    directories build by "make install" by compiling an example
	    preprocessor using only the new include and lib directories
	    in the location specified by the "prefix" variable (specified
	    on "configure" commandline during initial configuration).
	* removed use of roseString.h file (we now only use the C++
	    strings instead of building a separate string library that
	    is similar to the C++ strings if it is not supported by the
	    target compiler). As a result we are not dependent upon C++
	    compilers that implement the C++ standard string library.
	* The scalar indexing transformation in the A++P++ preprocessor
	    now uses the new rewrite interface, the other array statement
	    transformation does not yet use the new rewrite interface.
	* Defined a new high-level interface for access to the ROSE
	    preprocessor. We now have a simple frontend() and backend()
	    function which simplifies the interface (and the use of
	    standard compiler options (e.g. -E).
	* ROSE preprocessors now use the -E and -H options properly.
	    No test code is presently in place to test this.
	* Improved output from unparser (part of work on how comments and
	    CPP directives are output within the code generation phase.
	* Code generated by unparser now includes all CPP directives
	    (most were previously commented out).  An option to
	    alternatively output all header files into the generated 
	    output is not yet implemented.
	* Output from cvschk:
	********* TESTED with **************
	automake (GNU automake) 1.5e
	autoconf (GNU Autoconf) 2.52h
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   README
	>Locally modified   configure.in
	>Locally modified   makelinks
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AST_RewriteMechanism/ASTFragmentRequirementStrings.C
	>Locally modified   AST_RewriteMechanism/Makefile.am
	>Locally modified   AST_RewriteMechanism/inputProgram1.C
	>Locally modified   AST_RewriteMechanism/rewrite.C
	>Locally modified   AST_RewriteMechanism/rewrite.h
	>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
	>Locally modified   AST_RewriteMechanism/rewriteInheritedAttribute.C
	>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
	>Locally modified   AST_RewriteMechanism/rewriteTreeTraversal.C
	>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   EDG/src/Makefile.am
	>Locally modified   EDG/src/sageFunctionPrototypes.h
	>Locally modified   EDG/src/sageSupport.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   ExamplePreprocessors/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/testAxx2002_07.C
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
	>Locally modified   ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
	>Locally modified   ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/BabelPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/defaultPreprocessor.C
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am
	>Locally modified   ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/exampleMakefile.in
	>Locally modified   ExamplePreprocessors/SvPabloPreprocessor/Makefile.am
	>Locally modified   MSTL/Makefile.am
	>Locally modified   PDF/Makefile.am
	>Locally modified   QueryLibs/BooleanQuery/Makefile.am
	>Locally modified   QueryLibs/NameQuery/Makefile.am
	>Locally modified   QueryLibs/NameQuery/nameQueryInheritedAttribute.C
	>Locally modified   QueryLibs/NodeQuery/Makefile.am
	>Locally modified   QueryLibs/NumberQuery/Makefile.am
	>Locally modified   QueryLibs/NumberQuery/numberQuery.h
	>Locally modified   QueryLibs/NumberQuery/numberQueryInheritedAttribute.C
	>Locally modified   ROSETTA/Grammar/Expression.code
	>Locally modified   ROSETTA/Grammar/LocatedNode.code
	>Locally modified   ROSETTA/Grammar/Node.code
	>Locally modified   ROSETTA/Grammar/Statement.code
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/Grammar/Type.code
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/node.C
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/attachPreprocessingInfo.C
	>Locally modified   TESTS/CompileTests/A++Code/Makefile.am
	>Locally modified   TESTS/CompileTests/A++Code/lazy_task.C
	>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
	>Locally modified   config/Makefile.for.ROSE.includes.and.libs
	>Locally modified   docs/Rose/Makefile.am
	>Locally modified   docs/Rose/AstRewite/AstRewrite.tex
	>Locally modified   dqDevelopmentDirectory/Makefile.am
	>Locally modified   dqDevelopmentDirectory/test2001_18A.h
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   src/Makefile.am
	>Locally modified   src/optionDeclaration.h
	>Locally modified   src/rose.C
	>Locally modified   src/rose.h
	>Locally modified   src/transformationSupport.C
	>Locally modified   src/transformationSupport.h
	>Locally modified   src/utility_functions.C
	>Locally modified   src/utility_functions.h
	>Locally modified   src/command_line_options/Makefile.am
	>Locally modified   src/unparser/Makefile.am
	>Locally modified   src/unparser/modified_sage.C
	>Locally modified   src/unparser/unparse_stmt.C
	>Locally modified   src/unparser/unparser.C
	>Locally modified   src/unparser/unparser.h
	>Locally modified   util/Makefile.am
	>Locally modified   util/string_functions.C
	>Locally modified   util/testStrings.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      AST_RewriteMechanism/inputDeclarationTest.C
	+Scheduled for add      AST_RewriteMechanism/rewriteAccumulatedAttribute.C
	+Scheduled for add      dqDevelopmentDirectory/lexPhase2003_01.C
	+Scheduled for add      dqDevelopmentDirectory/lexPhase2003_02.C
	+Scheduled for add      dqDevelopmentDirectory/test2003_01.C
	+Scheduled for add      dqDevelopmentDirectory/test2003_02.C
	+Scheduled for add      dqDevelopmentDirectory/test2003_03.C
	+Scheduled for add      dqDevelopmentDirectory/test2003_04.C
	********* Files Scheduled to be removed *********
	********* WARNINGS *********
	********* ERRORS *********

	
2003-02-10 Markus Schordan 0.5.19f
	* fixed bug in preproc.lex
	* added test in msDevelopment
	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/myMakeall
	>Locally modified   msDevelopment/test4.C
	>Locally modified   src/preproc.lex
	
2003-01-09 Dan Quinlan Version 0.5.19?
	* Modified Makefile.am files to set INCLUDE= $(ROSE_INCLUDES)
	    which is defiled in the common makefile included from
	    ROSE/config (Makefile.for.ROSE.includes.and.libs).
	    This simplifies how we can keep the list of directories
	    where we have header files maintained.
	* Fixed more bugs in the AST Rewrite mechanism
	* Added feature to record all declarations in an accumulated
	    attribute.  This permits us to generate a string required for
	    compilation of intermediate files.
	* Added include guards to ROSE/src/optionDeclaration.h.
	
2003-01-27 Markus Schordan 0.5.19e
	* added output of version number for Latex, html2latex, and doxygen
	  to ROSE/SCRIPTS/cvschk
	* fixed bug in class SgEnumType. The data member type is no longer included	
	  in the default traversal.
	* added documentation for Ast*Processing classes.
	* AstDOTProcessing: the name of the enums for traversal types have been
	  changed to be written in capital letters:
	  enum traversalType {PREORDER, POSTORDER, TOPDOWN ,BOTTOMUP 
	                      ,TOPDOWNBOTTOMUP}
	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	doxygen 1.3-rc1
	TeX (Web2C 7.3.1) 3.14159
	LaTeX2HTML Version 2K.1beta (1.47)
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.h
	>Locally modified   MSTL/AttributeMechanism.h
	>Locally modified   MSTL/DOTGeneration.C
	>Locally modified   MSTL/DOTGeneration.h
	>Locally modified   MSTL/MSTL.docs
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   SCRIPTS/cvschk
	>Locally modified   SCRIPTS/dotgen
	>Locally modified   docs/Rose/Makefile.am
	>Locally modified   docs/Rose/manual.tex.in
	>Locally modified   docs/Rose/AstProcessing/AstProcessing.tex
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.BottomUp.ps
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.C
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.Postorder.ps
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.Preorder.ps
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.TopDown.ps
	+Scheduled for add      docs/Rose/AstProcessing/astprocessingdoc_example1.TopDownBottomUp.ps
	
2003-01-13 Markus Schordan 0.5.19d
	* updated lsvis and renamed it to lsdot
	  use lsdot --help to get a description of the command line
	* changed makefiles to use new command line options of this script
	********* TESTED with **************
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   docs/Rose/Makefile.am
	>Locally modified   msDevelopment/myMakeall
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      SCRIPTS/lsdot
	********* Files Scheduled to be removed *********
	-Scheduled for removal  SCRIPTS/lsvis
	
2003-01-09 Dan Quinlan Version 0.5.19c
	* Edited documentation to correct many minor typos.
	* Added chapter on "Getting Started", includes figures that ate
	  automatically generated from the running specific
	  preprocessors (notes in the documentation are generated if
	  ROSE has not been built).	
	* Added Markus's perl script so that it is run and generates
	  the directory map figure in the Implementation chapter.
	
2003-01-09 Dan Quinlan Version 0.5.19b
	* Added make installcheck rule
	* Added test to make sure the ROSE can be used to build one of the
	    example preprocessors after make install is run (example used
	    the ROSE/include and ROSE/libs directories only).
	* Added documentation "Getting Started" chapter for users.
	  Shows and example preprocessor and makefile for use after
	  make install has been run. Same as is tests by make
	    installcheck.
	* Added Markus's perl script output to show the directory
	    structure of the ROSE project.  This will be modified later
	    to get it integerated better.
	* Added more documentation.
	
2003-01-09 Markus Schordan Version 0.5.19a
	* added a tool for generating a visualization of a directory structure
	  this shall be used for documentation in ROSE. It uses the tool 'dot'
	  and is stored in ROSE/SCRIPTS/lsvis. (renamed to lsdot in V0.5.19d)
	  It may be used for any other directories as well.
	
2003-01-06 Dan Quinlan Version 0.5.18a
	* Added Latex documentation (ROSE User Manual) in perparation of
	  release to SciDAC PERC project.
	  The latex documentation is built from ROSE/docs/Rose with "make latex-docs"
	  and produces a postscript file UserManual.ps.  
	  "make html-docs" produces an html version of the latex
	  UserManual and provides links to the postscript version of the 
	  documentation and links in the Reference chapter to the Doxygen
          generated documentation.
	* Added documentation to SAGE III so that Doxygen generated
	    documentation is better.  More work is required here.
	* Added documentation to ROSE/AST_RewriteMechanism source code
	  to improve documentation of both user level and developer level
	  documentation generated by Doxygen.
	* Added documentation to EDG, QueryLib, etc.
	* Added examples to latex documentation and put examples into
	  ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples
	  ExamplePreprocessors/DocumentedExamples/AstRewriteExamples
	  ExamplePreprocessors/DocumentedExamples/AstProcessingExamples
	  These examples are not compiled with the rest of the example
	  codes which should force them to track any changes in the
	  interfaces (and allow the documenation to be automatically
	  kept up-to-date.  All the Makefile.am are built and have been
	  added to the CVS repository.  Code fragments that appear in
	  the latex documentation can also be placed into these
	  directories. No attempt has been made to compile the code
	  fragments.
	* Documentation should be such that other developers can add there
	  parts to the existing documentation easily.  All makefiles are
	  provided with rules to make this simple (I hope).
	
        ********* TESTED with **************
        automake (GNU automake) 1.5e
        autoconf (GNU Autoconf) 2.52h
        g++ 2.96
        ********* Locally Modified *********
        >Locally modified   configure.in
        >Locally modified   rose.docs.in
        >Locally modified   AST_RewriteMechanism/ASTRewrite.docs
        >Locally modified   AST_RewriteMechanism/Makefile.am
        >Locally modified   AST_RewriteMechanism/rewrite.C
        >Locally modified   AST_RewriteMechanism/rewrite.h
        >Locally modified   AST_RewriteMechanism/testNewRewrite.C
        >Locally modified   EDG/documentation.docs
        >Locally modified   ExamplePreprocessors/Makefile.am
        >Locally modified   ExamplePreprocessors/A++P++Preprocessor/docs/lstlang2.sty
        >Locally modified   QueryLibs/QueryLib.docs
        >Locally modified   QueryLibs/NameQuery/nameQuery.h
        >Locally modified   ROSETTA/Grammar/Node.code
        >Locally modified   ROSETTA/Grammar/Type.code
        >Locally modified   SAGE/sage.docs.in
        >Locally modified   SAGE/sageClasses.docs
        >Locally modified   docs/doxygenBugs.docs
        >Locally modified   docs/Rose/Makefile.am
        >Locally modified   docs/Rose/rose.cfg.in
        >Locally modified   docs/Rose/sage.cfg.in
        >Locally modified   src/optionDeclaration.h
        >Locally modified   src/transformationSupport.h
        >Locally modified   src/unparser/unparser.docs
        >Locally modified   src/unparser/unparser.h
        ********* Needs CVS Update *********
        ********* FILES NEEDING A MERGE *********
        ********* Files Scheduled to be added *********
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/Makefile.am
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/Makefile.am
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/AstProcessingExamples/identityPreprocessor.C
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/Makefile.am
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteExample1.C
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/AstRewriteExamples/astRewriteInterfaceFunction.codeFragment
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AstPdfOutputPreprocessor.C
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/AstTraversalPreprocessor.C
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/Makefile.am
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/astOutput.codeFragment
        +Scheduled for add      ExamplePreprocessors/DocumentedExamples/SimplePreprocessorExamples/identityPreprocessor.C
        +Scheduled for add      docs/ROSE/README
        +Scheduled for add      docs/Rose/acknowledgments.tex
        +Scheduled for add      docs/Rose/appendix.tex
        +Scheduled for add      docs/Rose/bibliography.tex
        +Scheduled for add      docs/Rose/designOfRose.tex
        +Scheduled for add      docs/Rose/examples.tex
        +Scheduled for add      docs/Rose/fixme.sty
        +Scheduled for add      docs/Rose/glossary.tex
        +Scheduled for add      docs/Rose/implementation.tex
        +Scheduled for add      docs/Rose/introduction.tex
        +Scheduled for add      docs/Rose/listings.sty
        +Scheduled for add      docs/Rose/lstlang1.sty
        +Scheduled for add      docs/Rose/lstlang2.sty
        +Scheduled for add      docs/Rose/lstmisc.sty
        +Scheduled for add      docs/Rose/manual.tex.in
        +Scheduled for add      docs/Rose/preface.tex
        +Scheduled for add      docs/Rose/preprocessorDesign.tex
        +Scheduled for add      docs/Rose/reference.tex.in
        +Scheduled for add      docs/Rose/requirements.tex
        +Scheduled for add      docs/Rose/AstProcessing/AstProcessing.tex
        +Scheduled for add      docs/Rose/AstRewite/AstRewrite.tex
	  

2003-01-03 Markus Schordan Version 0.5.17b
	* fixed problem with multiple SgMemberFunctionDeclarations for
	  a single SgFunctionDefintion node. The definition pointer in
	  SgMemberFunctionDeclaration is now nullified if
	  another SgMemberFunctionDeclaration node exists from which a pointer
	  refers to SgFunctionDefinition.
	  The "old" pointer is copied in the new data member "definition_ref".
	  This data is not used by the backend.
	  The fix is implemented in SAGE/AstFixes.[hC]
	  This finishes the work on the AST to remove all cycles and multiple
	  paths in the traversal.
	* fixed a problem in the new DotGeneration output (it showed nodes 
	  that where not visited when using traverseInputFiles)
	* extended cvschk in SCRIPTS to print version numbers of tools used
	  when checking in. I've added the "TESTED WITH" part after
	  ":Extra file .." because it's the part after "Extra files" that is
	  used in ChangeLog.
	* this version compiles with g++3.2 but the 3.2 header files cannot
	  be parsed with the EDG version we are using right now. Therefore
	  g++ 2.96 still must be used.

	***************** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   MSTL/DOTGeneration.C
	>Locally modified   MSTL/DOTGeneration.h
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   SAGE/AstFixes.C
	>Locally modified   SCRIPTS/cvschk
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      msDevelopment/test_functiondecl1.C
	+Scheduled for add      msDevelopment/test_functiondecl2.C
	+Scheduled for add      msDevelopment/test_functiondecl2.h
	+Scheduled for add      msDevelopment/test_functiondecl3.C
	********* Files Scheduled to be removed *********
	-Scheduled for removal  src/rose_treeTrav_MK.C
	
2002-12-30 Markus Schordan Version 0.5.17a
	* solved all remaining problems in accessing synthesized attributes by
	  adding new types of nodes to SAGE to ensure that a node either
	  contains single successor pointers or a container (but not
	  both).
	  - the remaining 42 problematic nodes are now correct. There are no
	    problematic nodes left. This work is finished.
	    access names for synthesized attributes can be found in 
	    SAGE/Cxx_GrammarTreeTraversalAccessEnums.h
	  - added SgFunctionParameterTypeList
	  - added SgTypedefSeq (abbrevitation Seq is used because it's also used
	    in the C++98 grammar definition and we try to use the same names
	    where possible)
	  - affected Sage nodes are:
	    : replaced "SgTypePtrList typedefs" with "SgTypedefSeq* typedefs" in the following nodes:
		SgType
		SgTypeUnknown
		SgTypeChar
		SgTypeSignedChar
		SgTypeUnsignedChar
		SgTypeShort
		SgTypeSignedShort
		SgTypeUnsignedShort
		SgTypeInt
		SgTypeSignedInt
		SgTypeUnsignedInt
		SgTypeLong
		SgTypeSignedLong
		SgTypeUnsignedLong
		SgTypeVoid
		SgTypeGlobalVoid
		SgTypeWchar
		SgTypeFloat
		SgTypeDouble
		SgTypeLongLong
		SgTypeUnsignedLongLong
		SgTypeLongDouble
		SgTypeString
		SgTypeBool
		SgComplex
		SgTypeDefault
		SgReferenceType
		SgModifierType
		SgArrayType
		SgTypeEllipse
		SgNamedType
		SgPointerType
		SgNamedType
		SgEnumType
		SgNamedType
		SgTypedefType
		SgNamedType
		SgClassType
		SgTemplateInstantiationType
		SgPointerType
		SgPointerMemberType

	    : replaced SgTypePtrList typedefs with SgTypedefSeq*
	      AND replaced "SgTypePtrList arguments" with "SgParameterTypeList* arguments"
	      in the following Sage nodes:
		SgFunctionType
		SgMemberFunctionType
		SgMemberFunctionType
		SgPartialFunctionType
		SgMemberFunctionType

	* added an AST correctness test (which ensures that all 48 nodes
	which have been fixed with this version and 0.5.14a are correct
	for all test program codes.

	* removed generation of statistics when testing the AST (the new
	test covers more than the statistics did)

	* removed the generation of enums for access of synthesized attributes
	  for container nodes. (it is always wrong to use them on a container
	  node because the container has to be accessed using an iterator).
	  (in this checkin-version such nodes are put as comments in file
	  SAGE/Cxx_GrammarTreeTraversalAccessEnums.h) 
	  - this required changes in ROSETTA (grammar.h/C)
	  - SgName enums are outcommented as well because it has two containers.
	    These containers will be changed and should not be used right now.
	
	EDG-SAGE connection fixes:
	* fixed warning and changed assert: ROSE/EDG/src/sageSupport.C:1182: warning: comparison is always true due to limited range of
	  - the comparison asserted that a value of an unsigned type is >=0
	    which is always true. This test was removed.
	  - activated a test for column<=500 at the same location because
	    it is tested at other locations in the EDG/SAGE connection too.
	    (the absolute value of 500 for max columns das not really make
	     sense (they can have any value). Right now all tests pass this
	     artifical test but it may be removed in future.
	    (generated code may not be so nicely formated).
	
	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	******************************
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstProcessing.docs
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   AstProcessingLib/AstTests.h
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.C
	>Locally modified   EDG/src/sageSupport.C
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/Grammar/Type.code
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/grammar.h
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   ROSETTA/src/type.C
	>Locally modified   SAGE/sageClasses.docs
	>Locally modified   msDevelopment/Makefile.am
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	********* Files Scheduled to be removed *********
	
2002-22-20 Dan Quinlan: Version 0.5.15a
	* Added support for Doxygen generated documentation for Rose and
	    Sage.  Note that the option does not force any documentation 
	    to be developed currently, since we don't what the build
	    process or Rose to be dependent upon the availablity of
	    Doxygen software (3rd party software).  If Doxygen is
	    available in your environment (path) then running
	    "make rose-docs" or "make sage-docs" from the
	    "ROSE/docs/Rose" directory will generate all documentation
	    (into ROSE/docs/Rose/html and
	    ROSE/docs/Rose/SageIntermediateForm/html respectively).

	    - The Goal of this work is to provide a template for the
	      addition of new documentation into Rose by all developers.
	      The existing files should provide a template for each
	      developer to follow.  Please see Dan for any problems
	      in documenting your sections of Rose.

	    - Generates either DEVELOPER or USER level documentation:
	         USER level documentation only documents the user relavant
	         parts of the public interface.  The level of doxygen
	         generated documentation is controled by a Rose configure
		 option.  The default is to generate USER level
		 documentation:  The Rose configure option:
		      --enable-doxygen-developer-docs
		 forces the generation of DEVELOPER level documentation.

	    - Generates documentstion specific to Sage III merged into Rose
	         documentation either the "fast way" using Doxygen Tag
	         files or merged with Rose in a more presentable way (the
	         slow way).  The fast way makes it much easier to work
		 on the documentation, but the slow way builds better
		 looking documentation.  Current the default is to
	         build the documentation the more presentable way.
		 The Rose configure option:
		      --enable-doxygen-generate-fast-docs
		 permits the faster generation of Doxygen documentation.
	
	    - Added many new files many representing locations to place
	      documentation for different parts of Rose (in each directory).

	    - Generation of dDoxygen documentation from an automatically
	      generated distribution (automake generated dist rule) may
	      still not work properly.  This will be added next.  I wanted
	      to get the initial documentation mechanism into place so
	      that developers could use it.  It is just as available to
	      anyone checking out a version from CVS, but perhaps not
	      complete for anyone recieving a generated distribution.

	******** TESTED with *********
	automake (GNU automake) 1.5e
	autoconf (GNU Autoconf) 2.52h
	g++ 2.96
	******************************

	New files:
          ********* Locally Modified *********
          >Locally modified   ChangeLog
          >Locally modified   Makefile.am
          >Locally modified   configure.in
          >Locally modified   AST_RewriteMechanism/rewrite.C
          >Locally modified   AST_RewriteMechanism/rewrite.h
          >Locally modified   MSTL/AttributeMechanism.h
          >Locally modified   QueryLibs/BooleanQuery/booleanQuery.h
          >Locally modified   QueryLibs/NameQuery/nameQuery.h
          >Locally modified   QueryLibs/NameQuery/nameQueryInheritedAttribute.h
          >Locally modified   QueryLibs/NodeQuery/nodeQuery.h
          >Locally modified   QueryLibs/NodeQuery/nodeQueryInheritedAttribute.h
          >Locally modified   QueryLibs/NumberQuery/numberQuery.h
          >Locally modified   QueryLibs/NumberQuery/numberQueryInheritedAttribute.h
          >Locally modified   ROSETTA/ROSE_CxxGrammar.cfg
          >Locally modified   ROSETTA/src/Makefile.am
          >Locally modified   SAGE/Makefile.am
          >Locally modified   docs/README
          >Locally modified   src/transformationSupport.h
          >Locally modified   util/string_functions.h
          ********* Needs CVS Update *********
          ********* FILES NEEDING A MERGE *********
          ********* Files Scheduled to be added *********
          +Scheduled for add      rose.docs.in
          +Scheduled for add      AST_RewriteMechanism/ASTRewrite.docs
          +Scheduled for add      AstProcessingLib/AstProcessing.docs
          +Scheduled for add      EDG/documentation.docs
          +Scheduled for add      EDG/doc/admin.tex
          +Scheduled for add      EDG/doc/c_deproto.tex
          +Scheduled for add      MSTL/MSTL.docs
          +Scheduled for add      QueryLibs/QueryLib.docs
          +Scheduled for add      SAGE/sage.docs.in
          +Scheduled for add      SAGE/sageClasses.docs
          +Scheduled for add      docs/Makefile.am
          +Scheduled for add      docs/doxygenBugs.docs
          +Scheduled for add      docs/Rose/Makefile.am
          +Scheduled for add      docs/Rose/rose.cfg.in
          +Scheduled for add      docs/Rose/sage.cfg.in
          +Scheduled for add      src/extra.docs
          +Scheduled for add      src/unparser/unparser.docs
          +Scheduled for add      util/utilDocumentation.docs
          ********* Files Scheduled to be removed *********
          -Scheduled for removal  EDG/admin.tex
          -Scheduled for removal  EDG/c_deproto.tex
          -Scheduled for removal  EDG/config.cache.original
          -Scheduled for removal  EDG/config.status.original
          -Scheduled for removal  src/Makefile.am.b00


2002-12-20 Markus Schordan: Version 0.5.14a
	* solved various problems in accessing synthesized attributes by
	  adding new types of nodes to SAGE to ensure that a node either
	  contains single successor pointers or a container (but not
	  both).
	  - added SgCatchStatementSeq to SAGE.
	    and adapted all code that uses SgTryStatement
	  - added SgParameterList to SAGE
	    and adapted all code that uses SgFunctionDeclaration
	  - added SgCtorInitialiserList to SAGE
	    add adapted all code that uses SgMemberFunctionDeclaration
	  NOTE: the shape of the AST has changed for code that is represented
	        by such nodes. More nodes are processed now when traversing
	        the AST. The access names for synthesized attributes
	        (see SAGE/Cxx_GrammarTreeTraversalAccessEnums.h) are now
	        always correct offsets.
	  NOTE: "user code" example:
		Although we have made some changes to the structure of the AST
	        not any class of the AstProcessing classes (DOT/PDF/Statistics
	        generation) had to be modified but shows all new nodes in the
	        output.
	* changed all files in AstProcessingLib and MSTL to resolve includes
	  properly such that for a preprocessor it's sufficient now to include
	  rose.h only (we include different files in AstProcessingLib and MSTL)
	* added cvs code $Id: ChangeLog,v 1.188 2008/01/26 05:08:37 dquinlan Exp $ to all files in AstProcessingLib and MSTL to
	  show the author (who checked in the latest version), date, and
	  version number of that file.
	        
	* identified some bugs in ROSE
	  unparser:
	  	- catch statement
	             catch(int x) is unparsed to catch(int x;)
		- for statement
		     for(int x,y; ...) is unparsed to for(int x; int y;)
	  EDG-SAGE connection:
	        - the list-expression operator (also called comma operator)
	          cannot be parsed
	          examples:
	          i) z=x,y;
	          ii) for(i=1,j=2; ...)

	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	******************************
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AstProcessingLib/AstAttributeMechanism.h
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.h
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.C
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.h
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/AstPDFGeneration.h
	>Locally modified   AstProcessingLib/AstProcessing.C
	>Locally modified   AstProcessingLib/AstProcessing.h
	>Locally modified   AstProcessingLib/AstSimpleProcessing.C
	>Locally modified   AstProcessingLib/AstSimpleProcessing.h
	>Locally modified   AstProcessingLib/AstStatistics.C
	>Locally modified   AstProcessingLib/AstStatistics.h
	>Locally modified   AstProcessingLib/AstTests.C
	>Locally modified   AstProcessingLib/AstTests.h
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.C
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.h
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   MSTL/AttributeMechanism.C
	>Locally modified   MSTL/AttributeMechanism.h
	>Locally modified   MSTL/DOTGeneration.C
	>Locally modified   MSTL/DOTGeneration.h
	>Locally modified   MSTL/DOTRepresentation.C
	>Locally modified   MSTL/DOTRepresentation.h
	>Locally modified   MSTL/PDFGeneration.C
	>Locally modified   MSTL/PDFGeneration.h
	>Locally modified   ROSETTA/Grammar/Statement.code
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/test1.C
	>Locally modified   src/rose.C
	>Locally modified   src/variant.C
	>Locally modified   src/unparser/unparse_stmt.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      msDevelopment/test_exceptions1.C
	********* Files Scheduled to be removed *********
	
2002-12-13 Dan Quinlan: Version 0.5.13a
	* Removed old version of STL
	* Fixed many bugs and added features to AST rewrite mechanism
	* Moved numerous example preprocessors to
	    ROSE/ExamplePreprocessors directory. Reloated numerous files
	    to better positions within directory structure and cleaned up
	    the directory structure in preparation of internal PERC
	    release.
	* Removed use of PerlEnabledTestingFramework (old testing package)
	* Removed older versions of A++ preprocessor (several years old
	    and superceeded by new version (A++P++Preprocessor) in the
	    ROSE/ExamplePreprocessors directory.
	* Fixed numerous bugs and cleaned up A++P++Preprocessor
	* Added transformation specific to scalar indexing to
	    A++P++Preprocessor.
	* Added initial work on Data structure analysis preprocessor (part
	    of what Bronis referes to as the "Universal Translator").
	* Added Bable Preprocessor (generates SIDL from C++ header files).
	    This is initial work on the automated wrapping of libraries
	    using BABEL.
	* Added incomplete AccessPatternPreprocessor example for Bronis.
	* SvPablo Preprocessor NOT added yet (will add in next release).
	* Files changed/added/removed:
	********* Locally Modified *********
	>Locally modified   AUTHORS
	>Locally modified   ChangeLog
	>Locally modified   Makefile.am
	>Locally modified   configure.in
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AST_RewriteMechanism/ASTFragmentRequirementStrings.C
	>Locally modified   AST_RewriteMechanism/Makefile.am
	>Locally modified   AST_RewriteMechanism/inputProgram1.C
	>Locally modified   AST_RewriteMechanism/rewrite.C
	>Locally modified   AST_RewriteMechanism/rewrite.h
	>Locally modified   AST_RewriteMechanism/rewriteASTFragementString.C
	>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttribute.C
	>Locally modified   AST_RewriteMechanism/rewriteSynthesizedAttributeTemplates.C
	>Locally modified   AST_RewriteMechanism/rewriteTreeTraversal.C
	>Locally modified   AST_RewriteMechanism/testRewrite.C
	>Locally modified   AST_RewriteMechanism/testRewrite.h
	>Locally modified   AST_RewriteMechanism/testRewritePermutations.C
	>Locally modified   AST_RewriteMechanism/testRewriteReplacementPermutations.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.h
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.C
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.h
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/AstPDFGeneration.h
	>Locally modified   AstProcessingLib/AstProcessing.C
	>Locally modified   AstProcessingLib/AstProcessing.h
	>Locally modified   AstProcessingLib/AstSimpleProcessing.h
	>Locally modified   EDG/src/Makefile.am
	>Locally modified   EDG/src/edg.cfg
	>Locally modified   ExamplePreprocessors/Makefile.am
	>Locally modified   ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
	>Locally modified   ExamplePreprocessors/AnalysisPreprocessor/programAnalysis.C
	>Locally modified   ExamplePreprocessors/DefaultPreprocessor/Makefile.am
	>Locally modified   MSTL/DOTGeneration.C
	>Locally modified   MSTL/DOTGeneration.h
	>Locally modified   MSTL/Makefile.am
	>Locally modified   MSTL/PDFGeneration.C
	>Locally modified   QueryLibs/BooleanQuery/Makefile.am
	>Locally modified   QueryLibs/NameQuery/Makefile.am
	>Locally modified   QueryLibs/NameQuery/nameQuery.C
	>Locally modified   QueryLibs/NameQuery/nameQuery.h
	>Locally modified   QueryLibs/NodeQuery/Makefile.am
	>Locally modified   QueryLibs/NumberQuery/Makefile.am
	>Locally modified   ROSETTA/Grammar/Statement.code
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/src/Makefile.am
	>Locally modified   ROSETTA/src/addNonTerminal.C
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/sage3.h
	>Locally modified   TESTS/CompileTests/C++Code/Makefile.am
	>Locally modified   docs/ROSE/manual.tex
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   src/Makefile.am
	>Locally modified   src/rose.C
	>Locally modified   src/rose.h
	>Locally modified   src/sourceLocationInheritedAttribute.C
	>Locally modified   src/sourceLocationInheritedAttribute.h
	>Locally modified   src/utility_functions.C
	>Locally modified   src/utility_functions.h
	>Locally modified   src/variant.C
	>Locally modified   src/command_line_options/Makefile.am
	>Locally modified   src/command_line_options/buildCommandLine.C
	>Locally modified   src/unparser/Makefile.am
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	!NEEDS MERGE        A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
	!NEEDS MERGE        BabelPreprocessor/babelPreprocessor.C
	!NEEDS MERGE        BabelPreprocessor/babelTransformation.C
	!NEEDS MERGE        BabelPreprocessor/babelTransformation.h
	!NEEDS MERGE        DataStructurePreprocessor/Makefile.am
	!NEEDS MERGE        DataStructurePreprocessor/accumulatorAttribute.C
	!NEEDS MERGE        DataStructurePreprocessor/dataStructurePreprocessor.C
	!NEEDS MERGE        DataStructurePreprocessor/dataStructureTransformation.C
	!NEEDS MERGE        DataStructurePreprocessor/dataStructureTransformation.h
	!NEEDS MERGE        DataStructurePreprocessor/inheritedAttribute.C
	!NEEDS MERGE        DataStructurePreprocessor/nodeAttributeProperty.C
	!NEEDS MERGE        DataStructurePreprocessor/printData.C
	!NEEDS MERGE        DataStructurePreprocessor/synthesizedAttribute.C
	!NEEDS MERGE        ROSETTA/Grammar/treeTraversalClassConstructor.code
	!NEEDS MERGE        ROSETTA/Grammar/treeTraversalClassTemplate.code
	********* Files Scheduled to be added *********
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayPreprocessor.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/Makefile.am
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/TODO.txt
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayPreprocessor.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayTransformationSupport.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayTransformationSupport.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/arrayVariableDataBase.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/convect.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/convectFragment.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/documentation.txt
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/indexVariableDataBase.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/instrumentationExample.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/multiTransformExample.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/operandDataBase.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/operandDataBase.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/programTransformation.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/programTransformation.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/simpleA++.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testApp.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_01.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_02.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_03.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_04.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_05.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_06.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testAxx2002_07.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testCodeTemplate.inc
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/testNewTraversal.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacro-length.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacro-size.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacro-stride.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacro-uniform_size.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacro-variable_size.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationMacros.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationOptions.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationOptions.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/transformationSubscriptMacros.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/Makefile.am
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/database.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/indexDataBase.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/AST.ps
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/indirectAddressingCode.txt
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/kullTalk.ps
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/kullTalk.tex
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/listings.sty
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/lstlang1.sty
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/lstlang2.sty
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/lstmisc.sty
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/rose_testAxx2002_02.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/talk.C
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/talk.tex
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/talk2.tex
	+Scheduled for add      ExamplePreprocessors/A++P++Preprocessor/docs/talk3.tex
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/Makefile.am
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/accessPatternPreprocessor.C
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTest_1.C
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTransformation.C
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/accessPatternTransformation.h
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/accumulatorAttribute.C
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/inheritedAttribute.C
	+Scheduled for add      ExamplePreprocessors/AccessPatternPreprocessor/synthesizedAttribute.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/TODO.txt
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelPreprocessor.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelTest_1.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelTest_2.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelTransformation.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/babelTransformation.h
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/options.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/sidlFunction.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/simpleA++.h
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/transformationOptions.C
	+Scheduled for add      ExamplePreprocessors/BabelPreprocessor/transformationOptions.h
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/Makefile.am
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/README.txt
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/accumulatorAttribute.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureFunction.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructurePreprocessor.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_1.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_2.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureTest_3.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/dataStructureTransformation.h
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/inheritedAttribute.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/nodeAttributeProperty.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/options.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/printData.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/printDataTest.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/sidlFunction.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/simpleA++.h
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/synthesizedAttribute.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/transformationOptions.C
	+Scheduled for add      ExamplePreprocessors/DataStructurePreprocessor/transformationOptions.h
	+Scheduled for add      src/roseInternal.h
	********* Files Scheduled to be removed *********
	-Scheduled for removal  A++P++Preprocessor/ArrayPreprocessor.C
	-Scheduled for removal  A++P++Preprocessor/Makefile.am
	-Scheduled for removal  A++P++Preprocessor/TODO.txt
	-Scheduled for removal  A++P++Preprocessor/arrayInheritedAttributeBaseClass.C
	-Scheduled for removal  A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
	-Scheduled for removal  A++P++Preprocessor/arrayPreprocessor.h
	-Scheduled for removal  A++P++Preprocessor/arrayStatementTransformation.C
	-Scheduled for removal  A++P++Preprocessor/arrayStatementTransformation.h
	-Scheduled for removal  A++P++Preprocessor/arrayTransformationSupport.C
	-Scheduled for removal  A++P++Preprocessor/arrayTransformationSupport.h
	-Scheduled for removal  A++P++Preprocessor/arrayVariableDataBase.C
	-Scheduled for removal  A++P++Preprocessor/convect.C
	-Scheduled for removal  A++P++Preprocessor/convectFragment.C
	-Scheduled for removal  A++P++Preprocessor/documentation.txt
	-Scheduled for removal  A++P++Preprocessor/indexVariableDataBase.C
	-Scheduled for removal  A++P++Preprocessor/instrumentationExample.C
	-Scheduled for removal  A++P++Preprocessor/multiTransformExample.C
	-Scheduled for removal  A++P++Preprocessor/operandDataBase.C
	-Scheduled for removal  A++P++Preprocessor/operandDataBase.h
	-Scheduled for removal  A++P++Preprocessor/programTransformation.C
	-Scheduled for removal  A++P++Preprocessor/programTransformation.h
	-Scheduled for removal  A++P++Preprocessor/scalarIndexingArrayStatementTransformation.C
	-Scheduled for removal  A++P++Preprocessor/scalarIndexingArrayStatementTransformation.h
	-Scheduled for removal  A++P++Preprocessor/simpleA++.h
	-Scheduled for removal  A++P++Preprocessor/testApp.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_01.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_02.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_03.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_04.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_05.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_06.C
	-Scheduled for removal  A++P++Preprocessor/testAxx2002_07.C
	-Scheduled for removal  A++P++Preprocessor/testCodeTemplate.inc
	-Scheduled for removal  A++P++Preprocessor/testNewTraversal.C
	-Scheduled for removal  A++P++Preprocessor/transformationMacro-length.h
	-Scheduled for removal  A++P++Preprocessor/transformationMacro-size.h
	-Scheduled for removal  A++P++Preprocessor/transformationMacro-stride.h
	-Scheduled for removal  A++P++Preprocessor/transformationMacro-uniform_size.h
	-Scheduled for removal  A++P++Preprocessor/transformationMacro-variable_size.h
	-Scheduled for removal  A++P++Preprocessor/transformationMacros.h
	-Scheduled for removal  A++P++Preprocessor/transformationOptions.C
	-Scheduled for removal  A++P++Preprocessor/transformationOptions.h
	-Scheduled for removal  A++P++Preprocessor/transformationSubscriptMacros.h
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
	-Scheduled for removal  A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
	-Scheduled for removal  A++P++Preprocessor/IndexOffsetQuery/Makefile.am
	-Scheduled for removal  A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/database.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/indexDataBase.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.h
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
	-Scheduled for removal  A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
	-Scheduled for removal  A++P++Preprocessor/docs/AST.ps
	-Scheduled for removal  A++P++Preprocessor/docs/indirectAddressingCode.txt
	-Scheduled for removal  A++P++Preprocessor/docs/kullTalk.ps
	-Scheduled for removal  A++P++Preprocessor/docs/kullTalk.tex
	-Scheduled for removal  A++P++Preprocessor/docs/listings.sty
	-Scheduled for removal  A++P++Preprocessor/docs/lstmisc.sty
	-Scheduled for removal  A++P++Preprocessor/docs/rose_testAxx2002_02.C
	-Scheduled for removal  A++P++Preprocessor/docs/talk.tex
	-Scheduled for removal  A++P++Preprocessor/docs/talk2.tex
	-Scheduled for removal  A++P++Preprocessor/docs/talk3.tex
	-Scheduled for removal  BabelPreprocessor/Makefile.am
	-Scheduled for removal  BabelPreprocessor/TODO.txt
	-Scheduled for removal  BabelPreprocessor/babelTest_1.C
	-Scheduled for removal  BabelPreprocessor/babelTest_2.C
	-Scheduled for removal  BabelPreprocessor/options.C
	-Scheduled for removal  BabelPreprocessor/sidlFunction.C
	-Scheduled for removal  BabelPreprocessor/simpleA++.h
	-Scheduled for removal  BabelPreprocessor/transformationOptions.C
	-Scheduled for removal  BabelPreprocessor/transformationOptions.h
	-Scheduled for removal  DataStructurePreprocessor/README.txt
	-Scheduled for removal  DataStructurePreprocessor/dataStructureFunction.C
	-Scheduled for removal  DataStructurePreprocessor/dataStructureTest_1.C
	-Scheduled for removal  DataStructurePreprocessor/dataStructureTest_2.C
	-Scheduled for removal  DataStructurePreprocessor/dataStructureTest_3.C
	-Scheduled for removal  DataStructurePreprocessor/options.C
	-Scheduled for removal  DataStructurePreprocessor/printDataTest.C
	-Scheduled for removal  DataStructurePreprocessor/sidlFunction.C
	-Scheduled for removal  DataStructurePreprocessor/simpleA++.h
	-Scheduled for removal  DataStructurePreprocessor/transformationOptions.C
	-Scheduled for removal  DataStructurePreprocessor/transformationOptions.h
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/Makefile.am
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/optimizingArrayPreprocessor.C
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Makefile.am
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Makefile.in
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Ref.aux
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Ref.dvi
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Ref.log
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Ref.ps
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Ref.tex
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/tlist.C
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/tlist.h
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/Makefile
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/Makefile.b00
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/genobj.C
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/genobj.h
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/main.C
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/main.C.array
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/main.C.generic
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/tlist.C
	-Scheduled for removal  ExamplePreprocessors/A++Preprocessor/ListT/Test/tlist.h
	-Scheduled for removal  PerlEnabledTestingFramework/Makefile
	-Scheduled for removal  PerlEnabledTestingFramework/README
	-Scheduled for removal  PerlEnabledTestingFramework/doc/Makefile
	-Scheduled for removal  PerlEnabledTestingFramework/doc/petf-manual.pdf
	-Scheduled for removal  PerlEnabledTestingFramework/doc/petf-manual.ps
	-Scheduled for removal  PerlEnabledTestingFramework/perl5lib/petf/Auditor.pm
	-Scheduled for removal  PerlEnabledTestingFramework/perl5lib/petf/Reporter.pm
	-Scheduled for removal  PerlEnabledTestingFramework/perl5lib/petf/Runner.pm
	-Scheduled for removal  STL-1995/algo.h
	-Scheduled for removal  STL-1995/algobase.h
	-Scheduled for removal  STL-1995/bool.h
	-Scheduled for removal  STL-1995/bvector.h
	-Scheduled for removal  STL-1995/defalloc.h
	-Scheduled for removal  STL-1995/deque.h
	-Scheduled for removal  STL-1995/doc.mif
	-Scheduled for removal  STL-1995/doc.ps
	-Scheduled for removal  STL-1995/docbar.ps
	-Scheduled for removal  STL-1995/faralloc.h
	-Scheduled for removal  STL-1995/fdeque.h
	-Scheduled for removal  STL-1995/files.dif
	-Scheduled for removal  STL-1995/flist.h
	-Scheduled for removal  STL-1995/fmap.h
	-Scheduled for removal  STL-1995/fmultmap.h
	-Scheduled for removal  STL-1995/fmultset.h
	-Scheduled for removal  STL-1995/fset.h
	-Scheduled for removal  STL-1995/function.h
	-Scheduled for removal  STL-1995/hdeque.h
	-Scheduled for removal  STL-1995/heap.h
	-Scheduled for removal  STL-1995/hlist.h
	-Scheduled for removal  STL-1995/hmap.h
	-Scheduled for removal  STL-1995/hmultmap.h
	-Scheduled for removal  STL-1995/hmultset.h
	-Scheduled for removal  STL-1995/hset.h
	-Scheduled for removal  STL-1995/hugalloc.h
	-Scheduled for removal  STL-1995/hvector.h
	-Scheduled for removal  STL-1995/iterator.h
	-Scheduled for removal  STL-1995/lbvector.h
	-Scheduled for removal  STL-1995/ldeque.h
	-Scheduled for removal  STL-1995/list.h
	-Scheduled for removal  STL-1995/llist.h
	-Scheduled for removal  STL-1995/lmap.h
	-Scheduled for removal  STL-1995/lmultmap.h
	-Scheduled for removal  STL-1995/lmultset.h
	-Scheduled for removal  STL-1995/lngalloc.h
	-Scheduled for removal  STL-1995/lset.h
	-Scheduled for removal  STL-1995/map.h
	-Scheduled for removal  STL-1995/multimap.h
	-Scheduled for removal  STL-1995/multiset.h
	-Scheduled for removal  STL-1995/neralloc.h
	-Scheduled for removal  STL-1995/nmap.h
	-Scheduled for removal  STL-1995/nmultmap.h
	-Scheduled for removal  STL-1995/nmultset.h
	-Scheduled for removal  STL-1995/nset.h
	-Scheduled for removal  STL-1995/pair.h
	-Scheduled for removal  STL-1995/projectn.h
	-Scheduled for removal  STL-1995/random.cpp
	-Scheduled for removal  STL-1995/read.me
	-Scheduled for removal  STL-1995/set.h
	-Scheduled for removal  STL-1995/stack.h
	-Scheduled for removal  STL-1995/tempbuf.cpp
	-Scheduled for removal  STL-1995/tempbuf.h
	-Scheduled for removal  STL-1995/tree.h
	-Scheduled for removal  STL-1995/vector.h
	-Scheduled for removal  STL_Overture/algo.h
	-Scheduled for removal  STL_Overture/algobase.h
	-Scheduled for removal  STL_Overture/alloc.h
	-Scheduled for removal  STL_Overture/bool.h
	-Scheduled for removal  STL_Overture/bvector.h
	-Scheduled for removal  STL_Overture/defalloc.h
	-Scheduled for removal  STL_Overture/deque.h
	-Scheduled for removal  STL_Overture/function.h
	-Scheduled for removal  STL_Overture/hash_map.h
	-Scheduled for removal  STL_Overture/hash_set.h
	-Scheduled for removal  STL_Overture/hashtable.h
	-Scheduled for removal  STL_Overture/heap.h
	-Scheduled for removal  STL_Overture/iterator.h
	-Scheduled for removal  STL_Overture/list.h
	-Scheduled for removal  STL_Overture/map.h
	-Scheduled for removal  STL_Overture/ms-brlnd.tar
	-Scheduled for removal  STL_Overture/multimap.h
	-Scheduled for removal  STL_Overture/multiset.h
	-Scheduled for removal  STL_Overture/pair.h
	-Scheduled for removal  STL_Overture/pthread_alloc.h
	-Scheduled for removal  STL_Overture/set.h
	-Scheduled for removal  STL_Overture/stack.h
	-Scheduled for removal  STL_Overture/tempbuf.h
	-Scheduled for removal  STL_Overture/tree.h
	-Scheduled for removal  STL_Overture/vector.h
	********* WARNINGS *********
	********* ERRORS *********

2002-12-11 Markus Schordan: Version 0.5.12a
	* moved all SgProcessing classes to AstProcessingLib
	  (and are no longer generated by ROSETTA)
	  - user code has to be changed as follows:
	    if rose.h is included: remove #include "Cxx_GrammarTreeTraversalClass.h"
	    otherwise: replace #include "Cxx_GrammarTreeTraversalClass.h" 
	                  with #include "AstProcessing.h"
	  - modified all files in ROSE to reflect this change
	  - for all 4 Sg*Processing classes the prefix "Sg" has been replaced
	    with "Ast".(e.g. AstSimpleProcessing instead of SgSimpleProcessing)
	    the old name SgSimpleProcessing (etc.) is deprecated
	  - deleted all code in grammar.C generating traversal classes
	    and removed some dead code (removed 38K source code total)
	  - deleted all 9 treeTraversal*.code files
	* added SgForInitStatement added to SAGE. (This corrects a problem
	  in the access of synthesized attributes of SgForStatement)
	  note: this is a statement. Any code that handles all statements
	        needs to handle SgForInitStatement as well now.
	  - for compatibility ROSE::identifyVariant in ROSE/src/variant.C 
	    has been extended as well
	* modified definition of "Problematic Node" in grammar.C
	  (that's ongoing work)
	* The implementation of is$CLASSNAME, using variant() and a C-cast,
	  has been replaced by code using dynamic_cast.
	  ROSE/ROSETTA/Grammar/grammarIsClassNameFunctionDefinitionMacros.macro
	  Remark: old code in this file and generation of $ACCUMULATION_STRING
	          not removed yet
	* removed the CPP language extentions ParForStatement 
	  and ParBlockStatement
	  NOTE: there was no code in the EDG-SAGE connection code. Hence,
	        the PAR constructs were never used in Sage.
	  changed:
 	    ROSE/ROSETTA/Grammar/Statement.code, ROSE/ROSETTA/src/statement.C, 
	    ROSE/src/unparser/unparse_stmt.C, ROSE/src/show.C, 
	    ROSE/src/utility_functions.C, ROSE/src/variant.C
	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	******************************
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
	>Locally modified   AST_RewriteMechanism/ASTFragmentContainer.C
	>Locally modified   AstProcessingLib/AstDOTGeneration.h
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.h
	>Locally modified   AstProcessingLib/AstPDFGeneration.h
	>Locally modified   AstProcessingLib/AstStatistics.h
	>Locally modified   AstProcessingLib/AstTests.h
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.h
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   BabelPreprocessor/babelPreprocessor.C
	>Locally modified   BabelPreprocessor/babelTransformation.C
	>Locally modified   BabelPreprocessor/babelTransformation.h
	>Locally modified   DataStructurePreprocessor/Makefile.am
	>Locally modified   DataStructurePreprocessor/accumulatorAttribute.C
	>Locally modified   DataStructurePreprocessor/dataStructurePreprocessor.C
	>Locally modified   DataStructurePreprocessor/dataStructureTransformation.C
	>Locally modified   DataStructurePreprocessor/dataStructureTransformation.h
	>Locally modified   DataStructurePreprocessor/inheritedAttribute.C
	>Locally modified   DataStructurePreprocessor/nodeAttributeProperty.C
	>Locally modified   DataStructurePreprocessor/printData.C
	>Locally modified   DataStructurePreprocessor/synthesizedAttribute.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   MSTL/DOTGeneration.h
	>Locally modified   MSTL/PDFGeneration.h
	>Locally modified   QueryLibs/BooleanQuery/booleanQuery.C
	>Locally modified   QueryLibs/BooleanQuery/booleanQuery.h
	>Locally modified   QueryLibs/NodeQuery/nodeQuery.C
	>Locally modified   QueryLibs/NodeQuery/nodeQuery.h
	>Locally modified   QueryLibs/NumberQuery/numberQuery.C
	>Locally modified   QueryLibs/NumberQuery/numberQuery.h
	>Locally modified   ROSETTA/Grammar/Statement.code
	>Locally modified   ROSETTA/Grammar/grammarIsClassNameFunctionDefinitionMacros.macro
	>Locally modified   ROSETTA/src/Makefile.am
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/grammar.h
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   SAGE/AstFixes.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/attachPreprocessingInfo.C
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   src/pdf_ast.C
	>Locally modified   src/rose.C
	>Locally modified   src/rose.h
	>Locally modified   src/show.C
	>Locally modified   src/utility_functions.C
	>Locally modified   src/variant.C
	>Locally modified   src/unparser/unparse_stmt.C
	>Locally modified   src/unparser/unparser.h
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AstProcessing.C
	+Scheduled for add      AstProcessingLib/AstProcessing.h
	+Scheduled for add      AstProcessingLib/AstSimpleProcessing.C
	+Scheduled for add      AstProcessingLib/AstSimpleProcessing.h
	********* Files Scheduled to be removed *********
	-Scheduled for removal  ROSETTA/Grammar/treeTraversal.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalCaseMacro.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalClassConstructor.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalClassMemberForNonterminal.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalClassMemberForTerminal.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalClassTemplate.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalFunctionPairMacro.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalImplementation.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalSTLContainer.code
	********* WARNINGS *********
	********* ERRORS *********
	
2002-12-03 Markus Schordan: Version 0.5.11b
	* fixed bug in EDG/src/sage_il_to_str.C
	* fixed outdated comments on strstream in EDG/src/sageSupport.C
	* changed char* get_octl_buffer() to string get_octl_buffer()
	  in EDG/src/sageFunctionPrototypes.h and EDG/src/sageSupport.C
	* fixed memory allocation bug in EDG/src/sage_gen_be.C

	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	******************************
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   EDG/src/sageFunctionPrototypes.h
	>Locally modified   EDG/src/sageSupport.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   EDG/src/sage_il_to_str.C

2002-11-07 Markus Schordan: Version 0.5.11a
	* improved compilation time of ROSE by about 70% with g++
	  (from 18min to 5:30 min on my machine using one processor)
	* replaced uses of "strstream" by "sstream" (strstream is deprecated)
	  in all files in ROSE! (EDG-SAGE code, unparser, generated code,
	                         some tree traversals)
	  - removed "ends" where necessary.
	  - replaced "ostrstream" by "ostringstream" 
	  - in sage3.h: <sstream> is now included instead of <strstream.h>
	  - in EDG/src/sage_gen_be.C, sage_il_to_str.C several changes
	  - in src/unparser/unparser.C: a whole section has been rewritten
	  NOTE: (o)strstream has not been removed in the test files ;-)
	* added a (temporary) fix to ROSE that removes all cycles in
	  SgInitializedName node-pairs. It is implemented as TopDownProcessing
	  in SAGE/AstFixes.[hC]
	* added traversal/pdf/statistics tests to AstProcessingLib
	  - the tests are invoked in rose.C (to ensure that they succeed 
	    for all test programs).
	    the call in rose.C is AstTests::runAllTests(&sageProject);
	    in ROSE/AstProcessingLib/AstTests.[hC] the function
	    runAllTests(SgProject*) shows how PDF files and DOT files can
	    be easily generated.
	* improved the PDFGeneration interface:
	  - the constructor does no longer take a filename;
	  - generate(string filename, SgNode* node)
   	    the whole AST (including header files and all input files)
	    is written to a PDF file (".pdf" is appended to filename)
	  - generateInputFiles(SgProject*): generates all input files
	    but not AST fragments representing included files.
	    the filenames specified on the command line (of the preprocessor)
	    are used and ".pdf" is appended.
	  - generateWithinFile(SgFile*): same as above but with a single
	    file starting at a SgFile node.
	  - see MSTL/PDFGeneration.h
	        AstProcessingLib/AstPDFGeneration.h
	* added AstDOTGeneration to ROSE:
	   - this DOT generation is based on a traversal and creates the most
	     informative output:
	     numbers: in each node you can find two numbers: x:y
	     x represents a call of evaluateInheritedAttribute at this node
	     y represents a call of evaluateSynthesizedAttribute at this node
	     following the numbers shows the sequence in which all this functions
	     are called in a traversal
	     red edges: these are paths that are *not* traversed because a node
	                would be revisited.
	     orange nodes: these are problematic nodes because the
	                enum (=name) for accessing a synthesized attribute
	                might be wrong.
	     (a documentation will follow and is not checked in yet, explaining
	      some more features of these classes)
	   - the interface is the same as above for PDFGeneration
	   - see MSTL/DOTGeneration.h, 
                 AstProcessingLib/AstDOTGeneration.h
	* added scripts for translating dot files into ps to ROSE
	  - ROSE/SCRIPTS/dotgen
	    if one argument is specified the generated ps file is test.ps
	    e.g. dotgen testcode1.C.dot generates a file called test.ps
	    (use gv to view the file, gv test.ps & and set the option
	     "state->watch file". you never need to reopen a file, as long
	     as you always generate a test.ps)
	    e.g. dotgen testcode1.C.dot testcode1.C.ps
	    if two parameters are used the filenames specified are used.
	  - ROSE/SCRIPTS/dotgen2
	    same as dotgen but with filled node shapes (try which one works
	    best on your monitor)
	* sage_gen_be.C: fixed 22 cases of 2 kinds of warnings:
	  - warning: NULL used in arithmetic
	  - warning: passing NULL used for non-pointer argument 1 of ...
	  (lines: 428,1428,1466,1480,1761,3582,3629, 4052, 4474, 4476, 
	          5076, 5860, 5862, 12435, 12467, 14099, 14101, 14109, 
	          14111, 14580, 14837, 14846)
	  No code was associated with these tests (the tests are outcommented)
	  - 3 remaining warnings in sage_gen_be.C: 
	    "deleting `void *' is undefined"
	* sage_il_to_str.C: fixed a warning
	* the traversal has been devided up into:
	  - default traversal (DEF_TRAVERSAL)
	  - type traversal (TYPE_TRAVERSAL)
	  - and connecting paths between these two (DEF2TYPE_TRAVERSAL)
	  - no traversal (NO_TRAVERSAL)
	  the flags are defined in ROSE/ROSETTA/src/ROSETTA_macros.h
	  they flags are only used for debugging (or easy changes in the future)
	* fixed deprecated use of typenames in MSTL/AttributeMechanism.[hC]
	* fixed non-standard C++ use of "friend" in Support.code
	  (the error was reported when compiling Cxx_Grammar.h with gcc3.2)
	* fixed non-standard use of default values in headers and implementations
	  (in treeTraversalClassConstructor.code, treeTraversalClassTemplate.code)
	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	******************************
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstAttributeMechanism.h
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.C
	>Locally modified   AstProcessingLib/AstNodeVisitMapping.h
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/AstPDFGeneration.h
	>Locally modified   AstProcessingLib/AstStatistics.C
	>Locally modified   AstProcessingLib/AstStatistics.h
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.C
	>Locally modified   AstProcessingLib/AstTextAttributesHandling.h
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   EDG/src/sageGlobalVar.h
	>Locally modified   EDG/src/sageSupport.C
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   EDG/src/sage_il_to_str.C
	>Locally modified   MSTL/AttributeMechanism.C
	>Locally modified   MSTL/AttributeMechanism.h
	>Locally modified   MSTL/Makefile.am
	>Locally modified   MSTL/PDFGeneration.C
	>Locally modified   MSTL/PDFGeneration.h
	>Locally modified   NEW_EDG/Makefile
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassConstructor.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassTemplate.code
	>Locally modified   ROSETTA/Grammar/treeTraversalImplementation.code
	>Locally modified   ROSETTA/src/ROSETTA_macros.h
	>Locally modified   ROSETTA/src/expression.C
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/grammar.h
	>Locally modified   ROSETTA/src/node.C
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   ROSETTA/src/symbol.C
	>Locally modified   ROSETTA/src/terminal.C
	>Locally modified   ROSETTA/src/type.C
	>Locally modified   ROSETTA_EXAMPLES/ArrayASTRestructuringTool/ArrayGrammarMetaProgram.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/sage3.h
	>Locally modified   msDevelopment/Makefile.am
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/test1.C
	>Locally modified   src/rose.C
	>Locally modified   src/unparser/unparser.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AstDOTGeneration.C
	+Scheduled for add      AstProcessingLib/AstDOTGeneration.h
	+Scheduled for add      AstProcessingLib/AstTests.C
	+Scheduled for add      AstProcessingLib/AstTests.h
	+Scheduled for add      MSTL/DOTGeneration.C
	+Scheduled for add      MSTL/DOTGeneration.h
	+Scheduled for add      MSTL/DOTRepresentation.C
	+Scheduled for add      MSTL/DOTRepresentation.h
	+Scheduled for add      SAGE/AstFixes.C
	+Scheduled for add      SAGE/AstFixes.h
	+Scheduled for add      SCRIPTS/dotgen
	+Scheduled for add      SCRIPTS/dotgen2
	********* Files Scheduled to be removed *********
	-Scheduled for removal  SCRIPTS/dot2csps
	
2002-10-22 Dan Quinlan: Version 0.5.10a

	* Fixed configuration to remove default "-g -O2" from use with
	  g++.  Users must now use:
 	     configure --with-CXX_DEBUG=-g --with-C_DEBUG=-g --with-CXX_WARNINGS=-Wall --prefix=`pwd`
	  on Linux systems.  "-g" adds line number information to object
	  files and "-Wall" turns on more detailed warnings by the gcc and
	  g++ compiler.  "--prefix=`pwd`" tells configuration where to
	  place "include" and "lib" directories when "make install" is
	  run (done by distcheck rule).  NOTE: "-g -O2" is no longer the default when using gcc
	  and g++ compilers.

	* Fixed new AST Rewrite Mechanism to work with the newest version
          of the A++P++ preprocessor.  A++P++ Preprocessor works on
	  simple array statement transformations.  Scalar indexing
	  transformation is still incomplete.

	* Moved AST_Rewrite directory to top level since it requires the
 	  ROSE/src/librose.a library.

  	* Fixed bug in unparseToString when used with a SgGlobal
 	  object. Unparser::unparseStatement() asserted that line numbers
 	  were greater than zero, but the line number for a SgGlobal
 	  statement is always zero by definition.

	* Fixed numerous bugs in the AST rewrite mechanism.

	* Fixed EDG and ROSETTA to work with the SUN CC 5.2 compiler
          (version 6.1 of the SUN C++ environment).  This required
	  modifications to EDG/src/basics.h to avoid defining __WIN32__
	  and __MSDOS__ macros (they were defined by EDG to be 0 and
	  tested by the SUN's header files to see if they had been
	  defined, a common header file problem).

	* Fixed ROSE/util/string_functions.C to work with both GNU g++
	    (ver 2.96) and SUN CC (ver 5.2).  It previously only worked
	    for g++ (ver 2.96).

            // This does not work with SUN 5.1 C++ compiler, but is required for GNU g++
               #ifdef __GNUC__
               #include "algo.h"
               #endif

	  also the preinitialization lists must be different for each
	    compiler (in the
	    ROSE/A++P++Preprocessor/programTransformation.C file):

	  ArrayStatementTraversal::ArrayStatementTraversal ( SgProject & inputProject )
               #ifdef __GNUC__
                  : AST_Rewrite::RewriteTreeTraversal<
                         ProgramTransformationInheritedAttributeType,
                         ProgramTransformationSynthesizedAttributeType>::RewriteTreeTraversal(project)
               #else
                  : RewriteTreeTraversal(project)
               #endif

	* Fix SUN vs. LINUX syntax for autoconf
	  In purify options for ROSE/config/support-purify.m4 the
	    following syntax was changed and comment added:
	
	    # Can't use "$(xxx)" syntax since it only works when build proecess is run on SUNs
            # Linux requires a different syntax: "$xxx" instead.
            # CCLD="$(AUX_LINKER) $(CXX)"
            # CXXLD="$(AUX_LINKER) $(CXX)"
              CCLD="$AUX_LINKER $CXX"
              CXXLD="$AUX_LINKER $CXX"

	* Phase out and remove 3 year old version of A++/P++ preprocessor
	  (A++P++Prerocessor1999).  I have removed it's use in the
	  ROSE/ExamplePreprocessors/Makefile.am and in the
	  ROSE/configure.in file.

	* Added configuration support for Insure++ (similar but different
	  to Purify) source code error analysis compiler based tool.
	  See ROSE/configure --help for option details.

	* Fixed use of "make install" within configuration, removed
	  ROSE/include directory and placed header files in ROSE/src
	  (with their source files).

	* Removed references to STL-link in configuration files and
	  Makefile.am (in numerous directories).  ROSE now relies upon
	  the C++ compiler to provide an implementation of STL (cutting
	  ties to the SUN 4.2 compiler upon which SAGE II was so closely
	  tied). So "make dist" now works in addition to "make distcheck"
          which always worked.

	* Fixed use of __WIN32__ in EDG/src/basics.h to use not define it
	  as "0" and then check for definition using "#ifdef" instead of
	  "#if" (appears to be a bug in EDG source code). This fix
	  effected sage_cfe.C and sage_gen_be.C files as well.	

	* Fixed bugs in QueryLibs (some new libs might have been added
	  since the last checkin).  At some point all these libraries
	  should be combined into a single general Query library.
	  The design of the Query library mechanism needs to be reviewed.

	* Modified new mechanism for storing preprocessor control
	  declarations and comments in the AST. Removed mechanism to
	  remove comments once they were unparsed since this caused
	  side-effects in the unparser (problematic semantics for the
	  SgNode::unparseToString() member function).

	* Fixed ROSE to work with the SUN 5.2 C++ compiler.  However, the most
	  recient update to ROSE resulted in new code that does not
	  compile with the SUN 5.2 compiler.  This will be fixed in
	  subsequent checkins once all the developers are synched up.

	* Added InheritedAttributeBaseClass to simplify how the source
	  code position can be easily be communicated through the
	  inherited attribute within a tree traversal.  This might
	  result in a collection of similar mechanisms to use in the
	  construction of inherited attributes generally within the tree
	  traversal mechanism.
	
	  ******** TESTED with *********
	  automake (GNU automake) 1.5e
	  autoconf (GNU Autoconf) 2.52h
	  g++ 2.96
	  ********* Locally Modified *********
          ********* Locally Modified *********
          >Locally modified   Makefile.am
          >Locally modified   configure.in
          >Locally modified   makelinks
          >Locally modified   A++P++Preprocessor/ArrayPreprocessor.C
          >Locally modified   A++P++Preprocessor/Makefile.am
          >Locally modified   A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
          >Locally modified   A++P++Preprocessor/arrayTransformationSupport.C
          >Locally modified   A++P++Preprocessor/arrayTransformationSupport.h
          >Locally modified   A++P++Preprocessor/arrayVariableDataBase.C
          >Locally modified   A++P++Preprocessor/indexVariableDataBase.C
          >Locally modified   A++P++Preprocessor/operandDataBase.C
          >Locally modified   A++P++Preprocessor/operandDataBase.h
          >Locally modified   A++P++Preprocessor/programTransformation.C
          >Locally modified   A++P++Preprocessor/programTransformation.h
          >Locally modified   A++P++Preprocessor/simpleA++.h
          >Locally modified   A++P++Preprocessor/testAxx2002_06.C
          >Locally modified   A++P++Preprocessor/transformationMacros.h
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
          >Locally modified   A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
          >Locally modified   A++P++Preprocessor/IndexOffsetQuery/Makefile.am
          >Locally modified   A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
          >Locally modified   A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
          >Locally modified   A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
          >Locally modified   AstProcessingLib/Makefile.am
          >Locally modified   EDG/Makefile.am
          >Locally modified   EDG/src/basics.h
          >Locally modified   EDG/src/sage_cfe.C
          >Locally modified   EDG/src/sage_gen_be.C
          >Locally modified   ExamplePreprocessors/Makefile.am
          >Locally modified   MSTL/Makefile.am
          >Locally modified   PDF/Makefile.am
          >Locally modified   QueryLibs/Makefile.am
          >Locally modified   QueryLibs/BooleanQuery/Makefile.am
          >Locally modified   QueryLibs/BooleanQuery/booleanQuery.C
          >Locally modified   QueryLibs/NameQuery/Makefile.am
          >Locally modified   QueryLibs/NameQuery/nameQuery.C
          >Locally modified   QueryLibs/NameQuery/nameQuery.h
          >Locally modified   QueryLibs/NodeQuery/Makefile.am
          >Locally modified   QueryLibs/NodeQuery/nodeQuery.C
          >Locally modified   QueryLibs/NumberQuery/Makefile.am
          >Locally modified   QueryLibs/NumberQuery/numberQuery.C
          >Locally modified   ROSETTA/Makefile.am
          >Locally modified   ROSETTA/Grammar/LocatedNode.code
          >Locally modified   ROSETTA/Grammar/Node.code
          >Locally modified   ROSETTA/Grammar/Statement.code
          >Locally modified   ROSETTA/Grammar/Support.code
          >Locally modified   ROSETTA/Grammar/treeTraversalClassTemplate.code
          >Locally modified   ROSETTA/src/ROSETTA_macros.h
          >Locally modified   ROSETTA/src/constraintList.h
          >Locally modified   ROSETTA/src/expression.C
          >Locally modified   ROSETTA/src/grammar.C
          >Locally modified   ROSETTA/src/grammar.h
          >Locally modified   ROSETTA/src/grammarTreeNode.h
          >Locally modified   ROSETTA/src/node.C
          >Locally modified   ROSETTA/src/nonterminal.h
          >Locally modified   ROSETTA/src/support.C
          >Locally modified   ROSETTA/src/terminal.h
          >Locally modified   ROSETTA/src/terminalList.h
          >Locally modified   SAGE/Makefile.am
          >Locally modified   SAGE/attachPreprocessingInfo.C
          >Locally modified   SAGE/generateAST.C
          >Locally modified   SAGE/insert.C
          >Locally modified   SAGE/rose_attributes_list.C
          >Locally modified   SAGE/rose_attributes_list.h
          >Locally modified   SAGE/sage3.h
          >Locally modified   SAGE/stripWrapper.C
          >Locally modified   TESTS/CompileTests/C++Code/Makefile.am
          >Locally modified   config/ROSE.m4
          >Locally modified   config/choose-backend-compiler.m4
          >Locally modified   config/support-purify.m4
          >Locally modified   docs/ROSE/manual.tex
          >Locally modified   include/rose.h
          >Locally modified   src/Makefile.am
          >Locally modified   src/optionDeclaration.h
          >Locally modified   src/pdf_ast.C
          >Locally modified   src/preproc.lex
          >Locally modified   src/transformationSupport.C
          >Locally modified   src/transformationSupport.h
          >Locally modified   src/utility_functions.C
          >Locally modified   src/unparser/unparse_expr.C
          >Locally modified   src/unparser/unparse_stmt.C
          >Locally modified   src/unparser/unparser.C
          >Locally modified   src/unparser/unparser.h
          >Locally modified   util/string_functions.C
          >Locally modified   util/testStrings.C
          >Locally modified   TESTS/PerformanceTests/BenchmarkBase/Makefile.am
          >Locally modified   TESTS/PerformanceTests/BenchmarkBase/RUN_ME_AFTER_CHECKOUT.sh
          >Locally modified   acmacros/variable-header-filenames.m4
          ********* Needs CVS Update *********
          ********* Files Scheduled to be added *********
          +Scheduled for add      A++P++Preprocessor/arrayInheritedAttributeBaseClass.C
          +Scheduled for add      A++P++Preprocessor/arrayPreprocessor.h
          +Scheduled for add      A++P++Preprocessor/testAxx2002_07.C
          +Scheduled for add      A++P++Preprocessor/docs/talk.tex
          +Scheduled for add      A++P++Preprocessor/docs/talk2.tex
          +Scheduled for add      A++P++Preprocessor/docs/talk3.tex
          +Scheduled for add      AST_RewriteMechanism/ASTFragmentContainer.C
          +Scheduled for add      AST_RewriteMechanism/ASTFragmentRequirementStrings.C
          +Scheduled for add      AST_RewriteMechanism/DesignGoals.txt
          +Scheduled for add      AST_RewriteMechanism/Makefile.am
          +Scheduled for add      AST_RewriteMechanism/inputProgram1.C
          +Scheduled for add      AST_RewriteMechanism/rewrite.C
          +Scheduled for add      AST_RewriteMechanism/rewrite.h
          +Scheduled for add      AST_RewriteMechanism/rewriteASTFragementString.C
          +Scheduled for add      AST_RewriteMechanism/rewriteSynthesizedAttribute.C
          +Scheduled for add      AST_RewriteMechanism/rewriteSynthesizedAttributeTemplates.C
          +Scheduled for add      AST_RewriteMechanism/rewriteTreeTraversal.C
          +Scheduled for add      AST_RewriteMechanism/rewriteTypeDeclaration.C
          +Scheduled for add      AST_RewriteMechanism/test1.C
          +Scheduled for add      AST_RewriteMechanism/testRewrite.C
          +Scheduled for add      AST_RewriteMechanism/testRewrite.h
          +Scheduled for add      AST_RewriteMechanism/testRewritePermutations.C
          +Scheduled for add      AST_RewriteMechanism/testRewriteReplacementPermutations.C
          +Scheduled for add      ArchitectureSpecificTests/calibrator.c
          +Scheduled for add      config/Makefile.am
          +Scheduled for add      config/support-insure.m4
          +Scheduled for add      docs/ROSE/AST_Rewrite.tex
          +Scheduled for add      docs/ROSE/AST_Tree_Traversal.tex
          +Scheduled for add      src/sourceLocationInheritedAttribute.C
          +Scheduled for add      src/sourceLocationInheritedAttribute.h
          ********* Files Scheduled to be removed *********
          -Scheduled for removal  A++P++Preprocessor/inheritedAttributeBaseClass.h
          -Scheduled for removal  TransformationSpecification/Makefile.am
          -Scheduled for removal  TransformationSpecification/arrayAssignmentStatementInheritedAttribute.C
          -Scheduled for removal  TransformationSpecification/arrayAssignmentStatementInheritedAttribute.h
          -Scheduled for removal  TransformationSpecification/arrayAssignmentStatementTransformation.C
          -Scheduled for removal  TransformationSpecification/arrayAssignmentStatementTransformation.h
          -Scheduled for removal  TransformationSpecification/arrayStatementTransformation.C
          -Scheduled for removal  TransformationSpecification/arrayStatementTransformation.h
          -Scheduled for removal  TransformationSpecification/arrayTransformationSupport.C
          -Scheduled for removal  TransformationSpecification/arrayTransformationSupport.h
          -Scheduled for removal  TransformationSpecification/convectionTestCode.C
          -Scheduled for removal  TransformationSpecification/convectionTestCode2.C
          -Scheduled for removal  TransformationSpecification/example1.C
          -Scheduled for removal  TransformationSpecification/example2.C
          -Scheduled for removal  TransformationSpecification/example3.C
          -Scheduled for removal  TransformationSpecification/example4.C
          -Scheduled for removal  TransformationSpecification/example5.C
          -Scheduled for removal  TransformationSpecification/example6.C
          -Scheduled for removal  TransformationSpecification/example7.C
          -Scheduled for removal  TransformationSpecification/example8.C
          -Scheduled for removal  TransformationSpecification/indexOffsetQuery.C
          -Scheduled for removal  TransformationSpecification/indexOffsetQuery.h
          -Scheduled for removal  TransformationSpecification/instumentationExample.C
          -Scheduled for removal  TransformationSpecification/nameQueryInheritedAttribute.C
          -Scheduled for removal  TransformationSpecification/nameQueryInheritedAttribute.h
          -Scheduled for removal  TransformationSpecification/numberQueryInheritedAttribute.C
          -Scheduled for removal  TransformationSpecification/numberQueryInheritedAttribute.h
          -Scheduled for removal  TransformationSpecification/rose_test.C
          -Scheduled for removal  TransformationSpecification/scopeVariables.C
          -Scheduled for removal  TransformationSpecification/simpleA++.h
          -Scheduled for removal  TransformationSpecification/test.C
          -Scheduled for removal  TransformationSpecification/test.sage.C
          -Scheduled for removal  TransformationSpecification/testApp.C
          -Scheduled for removal  TransformationSpecification/testQuery.C
          -Scheduled for removal  TransformationSpecification/testTransformationSpecification.C
          -Scheduled for removal  TransformationSpecification/transformationMacros.h
          -Scheduled for removal  TransformationSpecification/transformationOptions.C
          -Scheduled for removal  TransformationSpecification/transformationOptions.h
          -Scheduled for removal  TransformationSpecification/transformationSubscriptMacros.h
          ********* WARNINGS *********
          ********* ERRORS *********

	
2002-10-16 Markus Schordan: Version 0.5.9a 

	* Added attribute mechanism 
	  
	  The attribute mechanism allows to store data in the AST at each
	  node. This data can be used by different AST traversals. The
	  mechanism is designed such that it allows to combine data from
	  different traversals. In difference to inherited and synthesized
	  attributes which are copied by value and not attached to AST
	  nodes the AstAttributes are objects and pointers to them are
	  stored in the AST.  An attribute class must inherit from class
	  AstAttribute. When a PDF file is generated it shows the values 
	  of ast-attributes if the virtual toString method is implemented.
	  AstAttributes (and its values) are shown in blue in PDF files.
	
	  You can add/replace/remove/set and access an arbitrary number of attributes 
	  at any SgNode. Attributes are accessed by name (using string).
	  When you include Cxx_Grammar.h AstAttribute and AstAttributeMechanism
	  are defined.

          example:                TestAstAttribute* myAttribute = new TestAstAttribute();
          to add an attribute:    node->attribute.add("test",myAttribute);
	  to access an attribute: node->attribute["test"];

	  - refer to AstProcessing/AstAttributeMechanism
	         and MSTL/AttributeMechanism.h for the interface)
	  - every SgNode has now a data member "attribute" of type AstAttributeMechanism
	  - class AttributeMechanism added to MSTL
	  - class AstAttributeMechanism added to AstProcessing
	  - class AstAttribute added to AstProcessing
	* added AstTextAttributesHandling.[hC]
	  - this class is used in simple tests only in this version for showing
	    how and where ast-attributes are represented in PDF files.
	
	* added operator << for SgName (as string with quotes);
	  - all SgNames are now visable as strings in the PDF output

	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   MSTL/Makefile.am
	>Locally modified   MSTL/PDFGeneration.C
	>Locally modified   ROSETTA/Grammar/Node.code
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/node.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   SAGE/sage3.h
	>Locally modified   config/Makefile.for.ROSE.includes.and.libs
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   src/rose.C
	>Locally modified   src/unparser/unparser.C
	********* Needs CVS Update *********
	********* FILES NEEDING A MERGE *********
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AstAttributeMechanism.h
	+Scheduled for add      AstProcessingLib/AstTextAttributesHandling.C
	+Scheduled for add      AstProcessingLib/AstTextAttributesHandling.h
	+Scheduled for add      MSTL/AttributeMechanism.C
	+Scheduled for add      MSTL/AttributeMechanism.h
	
2002-10-01 Markus Kowarschik: Version 0.5.8d
        * Added an alternative way of handling preprocessor directives;
          they are now attached to located nodes in the AST. This new
          way is turned on/off by setting the macro
          USE_OLD_MECHANISM_OF_HANDLING_PREPROCESSING_INFO
          to 0/1, respectively. See the comment in the beginning of
          SAGE/attachPreprocessingInfo.C for further details.

	  ******** TESTED with *********
	  automake (GNU automake) 1.5e
	  autoconf (GNU Autoconf) 2.52h
	  g++ 2.96
          ********* Locally Modified *********
          >Locally modified   ChangeLog
          >Locally modified   configure.in
          >Locally modified   ROSETTA/Makefile.am
          >Locally modified   ROSETTA/ROSE_CxxGrammar.cfg
          >Locally modified   ROSETTA/Grammar/LocatedNode.code
          >Locally modified   ROSETTA/Grammar/Support.code
          >Locally modified   ROSETTA/src/node.C
          >Locally modified   SAGE/Makefile.am
          >Locally modified   SAGE/rose_attributes_list.C
          >Locally modified   SAGE/rose_attributes_list.h
          >Locally modified   SAGE/sage3.h
          >Locally modified   src/unparser/unparse_stmt.C
          >Locally modified   src/unparser/unparser.C
          >Locally modified   src/unparser/unparser.h
          ********* Files Scheduled to be added *********
          +Scheduled for add      SAGE/attachPreprocessingInfo.C
          +Scheduled for add      SAGE/attachPreprocessingInfo.h

2002-10-01 Markus Schordan: Version 0.5.8c
	* bugfix: removed endl from some RTI information
	* added traverseWithinFile to Sg*Processing classes.
	  - the traversal can be started from any File node
	* PDF file generation:
	  - all pointers in the text page that refer to an existing node
	    in the AST are now PDF-page-links (can be clicked to get to the
	    corresponding page).
	  - added AstNodeVisitMapping to AstProcessingLib (used by PDF generation)

	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   configure.in
	>Locally modified   AstProcessingLib/AstPDFGeneration.C
	>Locally modified   AstProcessingLib/AstPDFGeneration.h
	>Locally modified   AstProcessingLib/Makefile.am
	>Locally modified   MSTL/PDFGeneration.C
	>Locally modified   ROSETTA/Grammar/Node.code
	>Locally modified   ROSETTA/Grammar/Support.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassConstructor.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassTemplate.code
	>Locally modified   ROSETTA/Grammar/treeTraversalImplementation.code
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   msDevelopment/mscomp.C
	>Locally modified   msDevelopment/myMakeall
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AstNodeVisitMapping.C
	+Scheduled for add      AstProcessingLib/AstNodeVisitMapping.h
	
2002-09-23 Markus Schordan: Version 0.5.8b
	* Added a tree traversal to ROSETTA
	  - used this traversal to generate code for runtime information (RTI) of an object
	    (this information is used in the PDF generation - it is not part of the C++ RTTI information)
	  - used this traversal to print a grammar.tex file that includes all information
	    regarding type hierarchy and traversal order for each node
	    (this information will be used in a documentation file later)
	    (it also documents "problematic AST nodes")
	* rewrote several functions in ROSETTA to use string instead of char*
	* Added new library AstProcessingLib (libastprocessing.a)
	  - AstPDFGeneration: creates a PDF file for any AST (and any subtree in an AST)
	  - AstStatistics (counts number of nodes in an AST)
	* Added new library MSTL (mstl.a)
	  - this is work in progress - it is used by AstProcessingLib.
	* Fixed bug in traverseInputFiles
	* added msDevelopment directory

	******** TESTED with *********
	automake (GNU automake) 1.5
	autoconf (GNU Autoconf) 2.53
	g++ 2.96
	********* Locally Modified *********
	>Locally modified   ChangeLog
	>Locally modified   Makefile.am
	>Locally modified   README
	>Locally modified   configure.in
	>Locally modified   EDG/src/sage_gen_be.C
	>Locally modified   ROSETTA/Grammar/Common.code
	>Locally modified   ROSETTA/Grammar/Node.code
	>Locally modified   ROSETTA/Grammar/treeTraversal.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassConstructor.code
	>Locally modified   ROSETTA/Grammar/treeTraversalClassTemplate.code
	>Locally modified   ROSETTA/Grammar/treeTraversalImplementation.code
	>Locally modified   ROSETTA/src/Makefile.am
	>Locally modified   ROSETTA/src/ROSETTA_macros.h
	>Locally modified   ROSETTA/src/expression.C
	>Locally modified   ROSETTA/src/grammar.C
	>Locally modified   ROSETTA/src/grammar.h
	>Locally modified   ROSETTA/src/grammarTreeNode.C
	>Locally modified   ROSETTA/src/grammarTreeNode.h
	>Locally modified   ROSETTA/src/statement.C
	>Locally modified   ROSETTA/src/support.C
	>Locally modified   ROSETTA/src/symbol.C
	>Locally modified   ROSETTA/src/type.C
	>Locally modified   SAGE/Makefile.am
	>Locally modified   src/Makefile.am
	>Locally modified   src/rose.C
	********* Files Scheduled to be added *********
	+Scheduled for add      AstProcessingLib/AstPDFGeneration.C
	+Scheduled for add      AstProcessingLib/AstPDFGeneration.h
	+Scheduled for add      AstProcessingLib/AstStatistics.C
	+Scheduled for add      AstProcessingLib/AstStatistics.h
	+Scheduled for add      AstProcessingLib/Makefile.am
	+Scheduled for add      MSTL/Makefile.am
	+Scheduled for add      MSTL/PDFGeneration.C
	+Scheduled for add      MSTL/PDFGeneration.h
	+Scheduled for add      msDevelopment/Makefile.am
	+Scheduled for add      msDevelopment/mscomp.C
	+Scheduled for add      msDevelopment/myMakeall
	+Scheduled for add      msDevelopment/test1.C
	********* Files Scheduled to be removed *********
	-Scheduled for removal  ROSETTA/Grammar/inputParameterClass.code
	-Scheduled for removal  ROSETTA/Grammar/inputParameterClassConstructor.code
	-Scheduled for removal  ROSETTA/Grammar/treeTraversalErrorMessage.code
	-Scheduled for removal  src/rose_MS.C
	
2002-06-5 Dan Quinlan: Version 0.5.8a
	* Added most sophisticated preprocessor to date; the A++/P++ Preprocessor.
	  Located in ROSE/A++P++Preprocessor directory.  This preprocessor implements
	  lower level optimized code in substitutuion of array class code within 
	  applications.  This also implements the scalar indexing transformations, 
	  except that this transformation is not finished.  The current state of the 
	  proeprocessor is that it is being fixed to handle multiple transformations.
	  Since this is not finished the preprocessor does not work, except on the 
	  provided example problem.  I will fix this soon, but this at least gets the
	  A++/P++ preprocessor into the repository.  The A++P++Preprocessor/docs directory
	  included a document that has many examples (from before I added the second 
	  transformation, when the preprocessor was working quite well).  Current work 
	  by Sunjeev will add blocking and some simple cache-based options to the loop 
	  dependent transformation.

	* Added Babel Preprocessor (ROSE/BabelPreprocessor):
	  This preprocessor builds SIDL interface descriptions from C++ header files.
	  This is the first start at a more general preprocessor which woudl also implement
	  the connection between a targeted C++ library and the code generated by Babel
	  from the SIDL input interface description.

	* Added DataStructurePreprocessor (ROSE/DataStructurePreprocessor directory):
	  This preprocessor traverses C data structures and generates C++ classes 
	  associated with them.  The goal here is to automate the connection of ROSE to
	  language front-ends by an analysis of the data structures they use to represent
	  their AST internally.  We will see if this works, at the moment the preprocessor
	  has been attempted using a number of techniques, the most sucessful technique 
	  so far has been to break the complex queries into generic subqueries that are
	  placed into the QueryLib libraries.  At present only a few of the required queries
	  to support the DataStructurePreprocessor are implemented.  This work is also 
	  unfinished.

	* Added utility directory (ROSE/util) to place functions and mechanisms that are
	  common to use in both ROSETTA, ROSE, and preprocessors built using ROSE.

	* Numerous places (too many to list) where "char*" was used previously now use 
	  the string class and its member functions.

	* The AST rewrite mechanisms that are implemented in the AST nodes currently call 
	  code that has been isolated into the SAGE directory (files: generateAST.C,
	  grammarBaseClass.C, insert.C, and stripWrapper.C).  This is done to avoid the
	  specification of code that is (or was) changing often, into the ROSETTA code
	  generation step.  At some point this code will be placed into the steps that
	  generate code (e.g. SAGE III) from the specification of the C++ grammar that
	  ROSETTA uses.  This does not imply that the current setup should not work with
	  higher-level grammars, once that work is finished.

	* Added Query libraries (ROSE/QueryLibs directory):
	     Separate libraries support general queries that return lists of:
	        numbers, strings, boolean values, and SgNode pointers.  The example
	     preprocessors use these query libraries to implement nested queries that
	     defile larger application specific queries. 
	     Checking in these Query libraries allows us to begin the process of
	     defining a more complete mechanism that would implement all possible
	     queries. Can we define a mechanism by which ROSE could automate this?

	* A base class that simplifies the specification of synthesized attributes placed into
	  ROSE/src/synthesizedAttributeBaseClass.h and implemented in 
	  ROSE/src/synthesizedAttributeBaseClass.C.  This base class is used for the synthesized 
	  attributes defined in the A++P++Preprocessor (actually there is a hierarchy of classes
	  in the A++P++Preprocessor which implement the synthesized attributes, with the 
	  SynthesizedAttributeBaseClass as the root of all of them).
	
	* Added SgVariableDefinition::get_type() member function definition to 
	  ROSE/ROSETTA/Grammar/Statement.code

	* Fixed redundent addition of parameters to function type argument list
	  (fixed in sage_gen_be.C, marked "DQ (5/11/2002)")

	* Fixed some minor bugs in the unparser.  Expanded functionality of 
          unparseToString() member function.

	* Added first pass at documentation for ROSE to ROSE/docs/ROSE/manual.tex.  
	  This is not finished.

	* Fixed bug in config/choose-backend-compiler.m4 to permit use of g++ with 
	  version 3.0.3 of the compiler.

	* Removed the compilation and testing of the ROSE/TransformationSpecification directory.
	  This directory will be removed at some point.  The preprocessors that where there are 
	  no better represented in the different A++P++Preprocessor, DataStructurePreprocessor,
	  and BabelPreprocessor directories.

	* Fixed several minor bugs in ROSETTA.

	* Fixed minor bugs in EDG front-end (Connection to SAGE).

	* Fixed several configuration bugs that were anoying.  Make clean now does a more robust job.
	  Dependencies between files required for force compilation are now better represented in the 
	  Makefile.am files in most directories.

	* Added more material to the ROSE/TODO file.  This should be merged with the other TODO files
	  before we get too many of them.

	* Added features to ROSE/src/pdf_ast.C to output more data about the AST 
	  in the pdf format.

	* Added many new files in this checkin (I've listed these since it has been so long 
	  since my last checkin):
             A++P++Preprocessor/ArrayPreprocessor.C
             A++P++Preprocessor/Makefile.am
             A++P++Preprocessor/TODO.txt
             A++P++Preprocessor/arrayInheritedAttributeBaseClass.h
             A++P++Preprocessor/arrayStatementTransformation.C
             A++P++Preprocessor/arrayStatementTransformation.h
             A++P++Preprocessor/arrayTransformationSupport.C
             A++P++Preprocessor/arrayTransformationSupport.h
             A++P++Preprocessor/arrayVariableDataBase.C
             A++P++Preprocessor/convect.C
             A++P++Preprocessor/convectFragment.C
             A++P++Preprocessor/documentation.txt
             A++P++Preprocessor/indexVariableDataBase.C
             A++P++Preprocessor/inheritedAttributeBaseClass.h
             A++P++Preprocessor/instrumentationExample.C
             A++P++Preprocessor/multiTransformExample.C
             A++P++Preprocessor/operandDataBase.C
             A++P++Preprocessor/operandDataBase.h
             A++P++Preprocessor/programTransformation.C
             A++P++Preprocessor/programTransformation.h
             A++P++Preprocessor/scalarIndexingArrayStatementTransformation.C
             A++P++Preprocessor/scalarIndexingArrayStatementTransformation.h
             A++P++Preprocessor/simpleA++.h
             A++P++Preprocessor/testApp.C
             A++P++Preprocessor/testAxx2002_01.C
             A++P++Preprocessor/testAxx2002_02.C
             A++P++Preprocessor/testAxx2002_03.C
             A++P++Preprocessor/testAxx2002_04.C
             A++P++Preprocessor/testAxx2002_05.C
             A++P++Preprocessor/testAxx2002_06.C
             A++P++Preprocessor/testCodeTemplate.inc
             A++P++Preprocessor/testNewTraversal.C
             A++P++Preprocessor/transformationMacro-length.h
             A++P++Preprocessor/transformationMacro-size.h
             A++P++Preprocessor/transformationMacro-stride.h
             A++P++Preprocessor/transformationMacro-uniform_size.h
             A++P++Preprocessor/transformationMacro-variable_size.h
             A++P++Preprocessor/transformationMacros.h
             A++P++Preprocessor/transformationOptions.C
             A++P++Preprocessor/transformationOptions.h
             A++P++Preprocessor/transformationSubscriptMacros.h
             A++P++Preprocessor/ArrayAssignmentStatementQuery/Makefile.am
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.C
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAccumulatorAttribute.h
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementAssembly.C
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.C
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementInheritedAttribute.h
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.C
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementSynthesizedAttribute.h
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.C
             A++P++Preprocessor/ArrayAssignmentStatementQuery/arrayAssignmentStatementTransformation.h
             A++P++Preprocessor/IndexOffsetQuery/Makefile.am
             A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.C
             A++P++Preprocessor/IndexOffsetQuery/indexOffsetQuery.h
             A++P++Preprocessor/ScalarIndexingStatementQuery/Makefile.am
             A++P++Preprocessor/ScalarIndexingStatementQuery/database.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/indexDataBase.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarDataBase.h
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAccumulatorAttribute.h
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementAssembly.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementInheritedAttribute.h
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementSynthesizedAttribute.h
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.C
             A++P++Preprocessor/ScalarIndexingStatementQuery/scalarIndexingStatementTransformation.h
             A++P++Preprocessor/docs/AST.ps
             A++P++Preprocessor/docs/indirectAddressingCode.txt
             A++P++Preprocessor/docs/kullTalk.ps
             A++P++Preprocessor/docs/kullTalk.tex
             A++P++Preprocessor/docs/listings.sty
             A++P++Preprocessor/docs/lstmisc.sty
             A++P++Preprocessor/docs/rose_testAxx2002_02.C
             BabelPreprocessor/Makefile.am
             BabelPreprocessor/TODO.txt
             BabelPreprocessor/babelPreprocessor.C
             BabelPreprocessor/babelTest_1.C
             BabelPreprocessor/babelTest_2.C
             BabelPreprocessor/babelTransformation.C
             BabelPreprocessor/babelTransformation.h
             BabelPreprocessor/options.C
             BabelPreprocessor/sidlFunction.C
             BabelPreprocessor/simpleA++.h
             BabelPreprocessor/transformationOptions.C
             BabelPreprocessor/transformationOptions.h
             DataStructurePreprocessor/Makefile.am
             DataStructurePreprocessor/README.txt
             DataStructurePreprocessor/accumulatorAttribute.C
             DataStructurePreprocessor/dataStructureFunction.C
             DataStructurePreprocessor/dataStructurePreprocessor.C
             DataStructurePreprocessor/dataStructureTest_1.C
             DataStructurePreprocessor/dataStructureTest_2.C
             DataStructurePreprocessor/dataStructureTest_3.C
             DataStructurePreprocessor/dataStructureTransformation.C
             DataStructurePreprocessor/dataStructureTransformation.h
             DataStructurePreprocessor/inheritedAttribute.C
             DataStructurePreprocessor/nodeAttributeProperty.C
             DataStructurePreprocessor/options.C
             DataStructurePreprocessor/printData.C
             DataStructurePreprocessor/printDataTest.C
             DataStructurePreprocessor/sidlFunction.C
             DataStructurePreprocessor/simpleA++.h
             DataStructurePreprocessor/synthesizedAttribute.C
             DataStructurePreprocessor/transformationOptions.C
             DataStructurePreprocessor/transformationOptions.h
             EDG/src/alternativeEdgSageInterface.C
             QueryLibs/Makefile.am
             QueryLibs/BooleanQuery/Makefile.am
             QueryLibs/BooleanQuery/booleanQuery.C
             QueryLibs/BooleanQuery/booleanQuery.h
             QueryLibs/BooleanQuery/booleanQueryInheritedAttribute.C
             QueryLibs/BooleanQuery/booleanQueryInheritedAttribute.h
             QueryLibs/NameQuery/Makefile.am
             QueryLibs/NameQuery/nameQuery.C
             QueryLibs/NameQuery/nameQuery.h
             QueryLibs/NameQuery/nameQueryInheritedAttribute.C
             QueryLibs/NameQuery/nameQueryInheritedAttribute.h
             QueryLibs/NodeQuery/Makefile.am
             QueryLibs/NodeQuery/nodeQuery.C
             QueryLibs/NodeQuery/nodeQuery.h
             QueryLibs/NodeQuery/nodeQueryInheritedAttribute.C
             QueryLibs/NodeQuery/nodeQueryInheritedAttribute.h
             QueryLibs/NumberQuery/Makefile.am
             QueryLibs/NumberQuery/numberQuery.C
             QueryLibs/NumberQuery/numberQuery.h
             QueryLibs/NumberQuery/numberQueryInheritedAttribute.C
             QueryLibs/NumberQuery/numberQueryInheritedAttribute.h
             SAGE/generateAST.C
             SAGE/insert.C
             SAGE/stripWrapper.C
             docs/ROSE/Makefile
             docs/ROSE/common.mk
             dqDevelopmentDirectory/test2002_01.C
             src/optionDeclaration.C
             src/synthesizedAttributeBaseClass.C
             src/synthesizedAttributeBaseClass.h
             src/transformationSupport.C
             src/transformationSupport.h
             util/Makefile.am
             util/roseString.C
             util/roseString.h
             util/string_functions.C
             util/string_functions.h
             util/testStrings.C

	* Modified many file (I've listed these since it has been so long since my last checkin):
             Makefile.am
             TODO
             configure.in
             EDG/Makefile.am
             EDG/errinfo/Makefile.am
             EDG/misc/Makefile.am
             EDG/src/Makefile.am
             EDG/src/displayTree.C
             EDG/src/sage_gen_be.C
             EDG/src/sage_il_to_str.C
             ExamplePreprocessors/Makefile.am
             ExamplePreprocessors/A++Preprocessor1999/Makefile.am
             ExamplePreprocessors/A++Preprocessor1999/ArrayGrammar/Makefile.am
             ExamplePreprocessors/A++Preprocessor1999/ArrayTransformationGrammar/Makefile.am
             ExamplePreprocessors/A++Preprocessor1999/TransformBaseClass/Makefile.am
             ExamplePreprocessors/AnalysisPreprocessor/Makefile.am
             ExamplePreprocessors/DefaultPreprocessor/Makefile.am
             ROSETTA/Makefile.am
             ROSETTA/Grammar/Node.code
             ROSETTA/Grammar/Statement.code
             ROSETTA/Grammar/Support.code
             ROSETTA/Grammar/treeTraversalClassConstructor.code
             ROSETTA/src/Makefile.am
             ROSETTA/src/grammar.C
             ROSETTA/src/statement.C
             ROSETTA/src/support.C
             ROSETTA_EXAMPLES/Makefile.am
             ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
             ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/Makefile.am
             SAGE/Makefile.am
             SAGE/rose_attributes_list.C
             SAGE/sage3.h
             TESTS/Makefile.am
             TESTS/CompileTests/Makefile.am
             TESTS/PerformanceTests/Makefile.am
             TESTS/RunTests/Makefile.am
             TransformationSpecification/Makefile.am
             TransformationSpecification/arrayAssignmentStatementInheritedAttribute.C
             TransformationSpecification/arrayAssignmentStatementInheritedAttribute.h
             TransformationSpecification/arrayAssignmentStatementTransformation.C
             TransformationSpecification/arrayAssignmentStatementTransformation.h
             TransformationSpecification/arrayStatementTransformation.C
             TransformationSpecification/arrayStatementTransformation.h
             TransformationSpecification/arrayTransformationSupport.C
             TransformationSpecification/arrayTransformationSupport.h
             TransformationSpecification/example7.C
             TransformationSpecification/indexOffsetQuery.C
             TransformationSpecification/indexOffsetQuery.h
             TransformationSpecification/nameQueryInheritedAttribute.h
             TransformationSpecification/numberQueryInheritedAttribute.h
             TransformationSpecification/testApp.C
             config/Makefile.for.ROSE.includes.and.libs
             config/choose-backend-compiler.m4
             docs/README
             docs/ROSE/Acknowledgments.tex
             docs/ROSE/Design_Of_ROSE.tex
             docs/ROSE/Introduction.tex
             docs/ROSE/Preface.tex
             docs/ROSE/manual.aux
             docs/ROSE/manual.dvi
             docs/ROSE/manual.log
             docs/ROSE/manual.ps
             docs/ROSE/manual.tex
             src/Makefile.am
             src/pdf_ast.C
             src/specification.C
             src/specification.h
             src/utility_functions.C
             src/command_line_options/Makefile.am
             src/unparser/Makefile.am
             src/unparser/unparse_expr.C
             src/unparser/unparse_stmt.C
             src/unparser/unparse_type.C
             src/unparser/unparser.C

2002-05-07 Boyana Norris: Version 0.5.7a 

        * Fixed bug with variable declarations with embedded enum declaration
	  by adding p_embedded flag to SgEnumDeclaration. The flag is set in
          the EDG to Sage 3 translation in EDG/src/sage_gen_be.C only 
          when the enum declaration is embedded in a variable declaration.
          The ROSETTA/src/statement.C was modified to include the new flag in
          the SgEnumDeclaration class, and ROSE/src/unparser/unparse_stmt.C 
	  was modified to unparse the enum declaration when the flag is set, 
	  and then unset the flag.
        
        ********* Locally Modified *********
        >Locally modified   EDG/src/sage_gen_be.C
        >Locally modified   ROSETTA/src/statement.C
        >Locally modified   ROSE/src/unparser/unparse_stmt.C
        

2002-04-30 Markus Schordan: Version 0.5.7

	* Implemented new version of AST traversal. The size of the
 	  templated class/functions is now independent of the number of
 	  classes implementing the AST.  The two old implementations
 	  (object-oriented and template version) are obsolete.
	  This new version combines aspects of both and is supported by
 	  new generated AST node access methods. method traverse is no longer
 	  overloaded (was overloaded for each class)
	* Added code to ROSETTA to generate a method for each node which
 	  returns an AST successor container.  - we now have containers of
 	  *pointers* to all nodes in the AST! This gives us a uniform access
 	  method for any node in the AST.
	* Synthesized Attributes of successors are stored in a Container
 	  and passed to the parent node. This Container can be used in the
 	  evaluateSynthesizedAttribute method. It presents synAttributes of
 	  AST nodes that contain STL Containers in the *same* way as nodes
 	  that have successors of different type.  This concept relies on
 	  the fact that for every node in the AST it holds that it either
 	  has single successors or a container but not both (template nodes
 	  do not conform yet).
	* Added four new interfaces+implementation for traversal and
 	  evaluation of attributes:
	  - TopDownBottomUpProcessing (inherited and synthesized attributes)
	  - TopDownProcessing (only inherited attributes)
	  - BottomUpProcessing (only synthesized attributes)
	  - SimpleProcessing (only visit, no inherited or synthesized attributes)
	  : note that traverse, evaluateInheritedAttribute, 
	    evaluateSynthesizedAttribute, visit, have different parameterlists
 	    in the respective class
	  : there are no function pointers any more. These interfaces require
 	    pure virtual functions to be implemented by the user (instead of
 	    passing function pointers as in our previous version).
	  : the interfaces require 2,1, or 0 template parameters. The interfaces
 	    are designed to be as slim as possible.
	* Added code generation for names (strings) of variants
	* Added generation of method string get_variantName(unsigned int v);
 	  to all processing interfaces
	* Added DOT file generation of tree traversal trace to new traverse
 	  function.
	* Removed the clear flag from the public interface of the traversal.
 	  This is now handled internally and the user does not need to take
 	  care of it anymore.
	* Fixed problem with SgInitialization nodes in treeTraversal
	* Adepted evaluation scheme (=tree traversal node order) 
          (but note: types are not traversed yet)
	* modified TransformationSpecification/example8.C to use new AST
 	  processing interfaces.
	* added file ROSETTA/Grammar/treeTraversalImplementation.code 
	  (new traversal function)	

 	********* Locally Modified *********
 	>Locally modified   Makefile.am
 	>Locally modified   ROSETTA/Grammar/Common.code
 	>Locally modified   ROSETTA/Grammar/Node.code
 	>Locally modified   ROSETTA/Grammar/Support.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalClassConstructor.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalClassMemberForNonterminal.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalClassMemberForTerminal.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalClassTemplate.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalFunctionPairMacro.code
 	>Locally modified   ROSETTA/Grammar/treeTraversalSTLContainer.code
 	>Locally modified   ROSETTA/src/grammar.C
 	>Locally modified   ROSETTA/src/grammar.h
 	>Locally modified   ROSETTA/src/node.C
 	>Locally modified   ROSETTA/src/statement.C
 	>Locally modified   ROSETTA/src/support.C
 	>Locally modified   TransformationSpecification/Makefile.am
 	>Locally modified   TransformationSpecification/example8.C
 	>Locally modified   src/rose.C

2002-02-21 Markus Schordan: Version 0.5.6b
	* Adepted existing Attributes and AttributeLists to be used at any AST node.
	* Rewrote PRAGMA handling routines to deal with the adepted attributes (the attributes are
	  used internally by ROSE to deal with PRAGMAs).
	
2002-02-12 Dan Quinlan: Version 0.5.6a
	* This version checks in the new string mechanisms and interfaces.  AST fragments
	  can be generated from strings, strings can be generated from AST fragements, and the
	  global tree traversal (still with only a low level interface) all implemented.

	* Added mechanism to generate AST fragments directly from strings (this mechanism 
	  reorganized the code that implemented the previous mechsnaism and provides a simple
	  interface.

	* Functions added within the SgNode to control the addition of new code using strings include:
	  appendSourceCode, prependSourceCode, replaceSourceCode, insertSourceCode member functions.
	  The "insertSouceCode" member function operates only on the global scope and on basicBlocks
	  and can add code to the top or botom (before a return statment if it exists) of a basic block.

	* Added mechanism to generate strings from ASTs.  This mechanism wraps the existing
	  unparser (the unparser in ROSE/src/unparse) so that it can be called on subgraphs of the
	  AST.  This us useful in conjunction with the mechanism to generate AST framenets directly 
	  from strings.

	* Fixed makefile dependence within ROSE/ROSETTA/src on *.code files in 
	  ROSE/ROSETTA/Grammar directory.

	* Fixed bug that prevented the replacementSourceString function from working properly.
	  Traversal of lists in global tree traversal is replaced with a trversal of a copy of the list
	  so that any modification of the list (addition and/or deletion of elements in the STL list)
	  does not effect the traveral of the list elements by the parent node.  

	* grammar.C was modified to add copyEdit of the $CLASSNAME into the strings generated within the
	  Grammar::addNewDataMemberToVisit() function.   Need to talk to Markus to make sure that there is
	  not a better way to introduce this change to add substitution of $TYPENAME.

	* Makefile.am was modified to add the stamp-h.in and stamp-h1.in files to the distribution
	  (not sure how this ever worked before now).
	
2002-02-11 Markus Schordan: Version 0.5.5c
	* fixed memory handling bug in/with Grammar::buildPrototypeForNode which caused
	  CxxGrammarMetaProgram not to terminate on Linux

2002-02-07 Markus Schordan: Version 0.5.5b
	* added new variant
	  naming scheme: V_<Classname>; can be accessed using variantT()
	  the enums and the implementing code are now generated automatically for every class
	* modified treeTraversal:
 	  - to traverse the AST as a tree (rather than a graph as it was before, about 50 changes in *.code files)
	  - to return a vector of snthesized attribute values of the AST subtree 
	    (the assembly function is now invoked only once
	    per subtree (instead of being invoked for each successor once))
	    this gives us a higher flexibility in defining semantic actions
	  - changed the interface of the assembly function to allow access to the node 'node' directly
	* added new enums to allow to access the synthesized attribute values of AST subtrees by name
	  - nameingscheme: <Classname>_<Membervariablename>
	    the enum is generated automatically for any membervariable that is traversed in the tree traversal
	* fixed problems in makefiles to handle roseString in ROSETTA

2002-01-17 Dan Quinlan
	* Fixed configuration to use new version 2.52 of Autoconf.
	* reduced the number of configure calls to 1 (plus BenchMarkBase).
	* Cleaned up directories removing unused files.
	* Configuration is now simpler and faster (and consistant with A++/P++ project).
	* ROSE now has a single config.h file (rather than 4 which was problematic previously).
	
2001-12-20 Dan Quinlan
	* Updated ROSE to use automake 1.5 and autoconf 2.52.
	  The process involved:
	     1) using autoupdate on all the configure.in files.
	     2) changing all the "dnl" references in the configure.in files to "#".
	     3) using AC_PROG_C and AC_PROG_CXX after selecting the C and C++ compilers based 
	        on the operating system (this allowed autoconf to set the $objext variable.
	     4) Commented out use of POP_LANG (with no corresponding PUSH_LANG) in EDG/configure.in
	     5) Fixed bug in EDG where "#ifdef" was used in a few places instead of "#if" (which was 
	        properly used all other places).  This was a bug because the new automake builds the
	        the config.h differently than the older automake (version 1.4) and uses the acconfig.h
	        files (the way the older automake should have, but didn't) and causes several entries 
	        of the sort:
                     #define STANDALONE_SAGE_GEN_BE 0
	        which when tested with #ifdef is TRUE, even though the author clearly ment it to 
	        be #if which would be false.  This caused hundreds of multiply defined variables because the lead to
	        "EXTERN" being defined to be "/* empty */" instead of "extern".  The following comment
	        marks the locations of where this was fixed in about 4 files (and one header file):
                /* DQ (12/20/2001) must use "if" can't use "ifdef" below since it is set by "#define STANDALONE_SAGE_GEN_BE 0" */
	        This is the first bug I have found to be clearly a bug in the EDG code (it is also in 
	        more recent versions of EDG!).
	     6) Remove old "missing" files so that the build scripts (which call automake with the "-a" option) will
	        place the newer updated versions of the "missing" file into the development directory (source directory).

          A difference between the new automake and the older autoconf is that not being able to read the Makefile.in files in any
	  directory seems to be a fatal error (output of autoconf 2.13):
                 updating cache ./config.cache
                 creating ./config.status
                 creating Makefile
                 creating PDF/Makefile
                 creating include/Makefile
                 creating src/Makefile
                 creating src/unparser/Makefile
                 creating src/command_line_options/Makefile
                 creating ROSETTA_EXAMPLES/Makefile
                 creating ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile
                 creating ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/Makefile
                 creating TransformationSpecification/Makefile
                 creating EXAMPLES/Makefile
                 sed: can't read ../EXAMPLES/Makefile.in: No such file or directory
                 creating dqDevelopmentDirectory/Makefile
                 sed: can't read ../dqDevelopmentDirectory/Makefile.in: No such file or directory
                 creating TESTS/Makefile
                 creating TESTS/RunTests/Makefile
                 creating TESTS/RunTests/A++Tests/Makefile
                 creating TESTS/RunTests/P++Tests/Makefile
                 sed: can't read ../TESTS/RunTests/P++Tests/Makefile.in: No such file or directory
                 creating TESTS/CompileTests/Makefile
                 creating TESTS/CompileTests/A++Tests/Makefile

	  Where as in the new version (output of autoconf 2.52):
                 configure: creating ./config.status
                 config.status: creating Makefile
                 config.status: creating PDF/Makefile
                 config.status: creating include/Makefile
                 config.status: creating src/Makefile
                 config.status: creating src/unparser/Makefile
                 config.status: creating src/command_line_options/Makefile
                 config.status: creating ROSETTA_EXAMPLES/Makefile
                 config.status: creating ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile
                 config.status: creating ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/Makefile
                 config.status: creating TransformationSpecification/Makefile
                 config.status: creating EXAMPLES/Makefile
                 config.status: creating dqDevelopmentDirectory/Makefile
                 config.status: error: cannot find input file: dqDevelopmentDirectory/Makefile.in
                 gmake: *** [distcheck] Error 1

	Essentially, we should configure everywhere and use conditional compilation to compile in the compile tree.

2001-12-18 Dan Quinlan
	* Fixed bugs that prevented full tests of A++ source and A++ example code on LINUX (using g++ backend) 
	  and SUN (using Sun CC backend). Correct handling of bool was required.
	* Added fixes to Query mechanism (not yet using Markus's global tree traversal).
	* Added current work on A++/P++ preprocessor (plus examples of other queries).  This is 
	  not yet tested within the "make check" tests.
	* Placed configure.in source specific to setting up different back-end C++ compilers into
	  three different macros (this reorganized some of Bobby's macros).
	* Added an autoconf macro to allow for the selection of alternative back-end C++ compilers
	  (the default is to use the compiler that is selected for the compilation of ROSE source code).
                --with-alternate-backend-C++-compiler=<compiler name>
	* checks have confirmed that if KCC is used as the C compiler then the AC_SIZEOF_TYPE macro returns zero,
	  but if the default C compiler is used then the size of all tyes appear to be correct.
	  So don't use KCC as the C compiler!
	* Fixed numerous portability problems with the use of KCC (but still not finished), so KCC does not
	  currently work to compile ROSE (ROSE will compile, but some applications will not link yet).
	
2001-12-14 Markus Schordan 0.5.4b
	* fixed a bug in the dot-generation code
	
2001-12-14 Markus Schordan
	Checked in version 0.5.4
	* added DOT-file generation for a visualization of a trace of any tree traversal (query)
	* added option "rose:dot" to command line interface
	* altered the tree traversal to ensure no node is revisited during traversal
	  (the only remaining case is: SgFunctionDefinition)
	* fixed bug in SAGE3: file_info was wrong in SgExpressionRoot
	* fixed bug in EDG-SAGE connection: file_info was not properly initialized for
	  SgFunctionCallExp
	
2001-12-04 Bobby Philip
	Checked in version 0.5.3
	* shell script config/create_system_headers automatically processes compiler
	  specific headers and places them in a subdirectory ROSE/{CompilerName}_HEADERS
	  This takes care of the problem with the include_next preprocessor directive
	* m4 script config/compiler-defs.m4 automatically determines preprocessor macro
	  definitions that the compiler makes and writes a string to config.h
	* shell script config/dirincludes creates a string that is nothing but the -I options
	  for the subdirectories of ROSE/{CompilerName}_HEADERS where compiler specific headers
	  are stored. 
	* fixed test codes in TESTS/CompileTests to not rely on bool to be defined
	* fixed Query.{C, h} and related files to allow compilation with g++
	
2001-11-19 Bobby Philip
	Checked in version 0.5.2b
	* Ensured RoseString or STL string class can be used without conflicts
	* Removed all use of RoseString explicitly
	* Ensured TransformationSpecification/example7.C compiles with g++
	* Modified preproc.lex to ensure ANSI conformance for declaration of yywrap() fn
	* Ensured ROSE compiles on Linux with g++
	* Added function in ROSETTA/Grammar/Support.code to strip ROSE specific arguments from command line
	* Modified function compileOutput (4 versions) in ROSETTA/Grammar/Support.code to take compiler name
	
2001-11-11 Dan Quinlan
	Checked in version 0.5.2a
	* Moved query mechanism source for from development location (ROSE/TransformationSpecification)
	  to the ROSE/src directory.
	* Implemented mechanism for applications to communicate information to the preprocessors built using ROSE.
	  This mechanism is demonstrated within the new example A++ preprocessor (still in development).
	* This version includes the newest (unfinished) version of the A++ preprocessor (located in
	  ROSE/TransformationSpecification (the development directory for transformation mechanisms)).
	* Fixed ifdef which comments out the roseString.C source code in case STL_STRING_IS_BROKEN is defined
	* Fixed configuration (configure.in) to remove the "ROSE/$(CXX_TEMPLATE_REPOSITORY_PATH)" directory built
	  after configure tests for STL.
	* Moved older version of A++Preprocessor from ROSE/ExamplePreprocessors/A++Preprocessor to 
	  ROSE/ExamplePreprocessors/A++Preprocessor1999 and placed the newest version of the A++ preprocessor into
	  the ROSE/ExamplePreprocessors/A++Preprocessor directory.  old files were removed from the old directory
	  and added (via cvs add) to the new directory location (ROSE/ExamplePreprocessors/A++Preprocessor1999).
	* Added use of -I$(top_srcdir)/src to INCLUDES variable in numerous Makefile.am files so that 
	  ROSE header files could be located into the ROSE/src directory.  This prepares the configurations 
	  system to have all header files presently in ROSE/include moved to ROSE/src (where the really
	  should be located).
	* acmacros directory has been tared up and placed into the CVS repository.  This directory is 
	  normally checked out from a secondary location (maintained by Brian Gunney). This location is not
	  uniformally available to those doing development work on ROSE.  Future version of ROSE will
	  automatically use the acmacros.tar.gz when the acmacros cvs repository is unavailable.

2001-10-30 Markus Schordan
	Checked in version 0.5.1b
	rewrote lexfile and parts of the unparser to cope with combinations of macros/comments/linkage specifications
	in C++ files and provide more precise information for the backend (unparser).
	rewrote lexfile, using 5 instead of 3 explicite states
        * added column information to preprocessingInfo and changed interface of class preprocessingInfo accordingly
        * changed line_no for comment and macro from last line to first line 
	* changed interface of the lexer. The enum DirectiveType is now recognized during scanning of C++ files
	* added c comments in macrolines (they are recognized and included in the macro string; this way we are
	able to deal with macros that include comments that span several lines of code)
	* cpp comments spanning multiple lines using '\'.
	* c comments in macrolines spanning multiple lines using '\'.
	* added nesting of c/c++ linkage specifications
	* strings are explicitely recognized to handle problems with start/end
	  of comment syntax within strings (\" within strings is recognized)
	* extended enum DirectiveType to cope with error and nested linkagespecifications
	* adapted code in SAGE/rose_attributes_list.[hC] and ROSE/src/unparser.[hC] to deal with new interfaces.
	  removed all the old and obsolete functions.	

2001-10-22 Bobby Philip (rtag 0.5.1a by DQ 2001-11-30)
        Checked in all changes to date
        Fixed bug in configure which incorrectly passed wrong flags to configure ROSETTA
	Removed nested classes based implementation of ROSETTA and replaced it with a standard class implementation
	Fixed bugs in ROSE that resulting in failing to compile with g++, now all of ROSE compiles
	with g++ but make check fails with g++.
	Rewrote ROSETTA classes to use STL lists instead of the list class defined in tlist.h and ensured that the
	ROSETTA/src/Cxx_Grammar.* files are identical (modulo expected changes) to the original generated files
        Fixed bugs in ROSETTA/Grammar/*.code files that related to setting STL lists to NULL
	Moved a lot of string manipulation functions from the Grammar class to the GrammarString class
	Fixed a lot of memory leaks related to string manipulation (there are many still!)
	Moved ROSE/src/ListT directory to ROSE/ExamplePreprocessors/A++Preprocessor and ensured that this list
	class is only used there.
	removed ROSE/src/postprocess* files
	
2001-10-17 Dan Quinlan
	Checked in version 0.5.0c

	Fixed problem with two versions of lex.yy.c (one in the source tree and one in the compile tree).
	Now we call the file generated by lex (from preproc.lex) preproc.C and we place that file into the
	distribution so that users don't have to directly use lex.  Since flex generates ANSI C code we use
	flex whenever flex is available (over that of lex), specifically we use the AM_PROG_LEX macro to
	control what version of lex we use (gnu flex or lex).  This sets $LEX and $LEXLIB in the makefiles
	(since we call AC_SUBST in the configure.in file after calling AM_PROG_LEX (for both variables).
	We set LEXLIB = -ll for now since we don't have our own yywrap defined (Markus will fix this in the
	lex file).  -ll seems to work with both lex and flex.  Flex is required for compilation with gcc
	(since it requires ANSI C and it would be too difficult to find the K&R switch for each C compier
	(if it even existed)).  It is only a developer issue if lex or flex is used, flex is prefered and
	appears to be more portable.

	Also fixed use of non_X_Symbol and X_Symbol (which I had gotten backwards in the 
	ROSE/ROSETTA/src/symbol.C file).

	Also fixed the number of command line options added to the command line for EDG (was 24, but 
	only 18 were used (a minor detail).  Note that present -D options added to EDG command line
	are specific to use with SUN system header files. This has to be made more flexible in the 
	near future.

2001-10-17 Dan Quinlan (morning)
	Checked in version 0.5.0b
	
2001-10-15 Dan Quinlan
	Fix bugs in EDG/SAGE interface:
	   * fileInfo object used in building break within a default case of a switch statement is built using data (seq == 0)
	     which indicates a special meaning (in this case that the break was not a part of the default in the original source code).
	     In this case we don't output the break into the SAGE 3 AST.
	   * The SgSwitchStatement was being built with the fileInfo object from the expression associated with the condition (??).
  	     This expression does not always have a valid fileInfo object (because the seq = 0) (which means something special in 
	     EDG land (see il_def.h). The source location is now taken directly from the input statement (which makes more sense anyway).
	   * Numerous other small bugfixes that were associated with bad source location information in the AST.
        Fix to unparser:
	   * Numerous fixes to the unparser have been done.  Mostly in connection with the interleaved unparsing of the strings 
	     stripped out by the lax/yacc preprocessing of each source file. This part of the unparser has been rewritten from scratch
	     (too many work arounds of work around in the older version).  As a result the newer version is simpler and much shorter.
	     However, the newer version required that numberous details be fixed in the EDG/SAGE interface (hence the work arounds
	     in the older version).
           * Note that the name of the class is allowed to be empty in the case of: typedef struct <no tag required here> { int x; } y;
	   * Made the assertion of line number > 0 be skipped for fileInfo objects with the filename == "default_file_name"
	   * Force call to set_col to use a parameter greater than or equal to zero (when it is reset in hte unparser)
	Fix to A++ preprocessor:
	   * forced all new statements associated with a transformation to have a fileInfo object with the filename 
	     set to "default_file_name".  Ultimately we would like a better way to make statements that have been added
	     as part of a transformation.
	Fix to portability of lex files:
	   * Modified ROSE/src/Makefile.am to separate the make rule specific to the generation of the preproc.o file
	     from the preproc.lex file.  Now the lex file is used only if the preproc.lex file is modified else we
	     use the lex.yy.c file directly.  The lex.yy.c file is also now placed into the distribution.  We have 
	     to make sure that within the development of ROSE that we use a version of lex that will generate a 
	     sufficently portable .c file from a .lex file.

2001-10-12 Dan Quinlan
	Fixed ROSE/ROSETTA/ROSE_CxxGrammar.cfg (Doxygen input file) to reflect new location of Cxx_Grammar.h and Cxx_Grammar.C.
	Also updated ROSE/ROSETTA/Makefile.am to build the ../docs/CxxGrammar since Doxygen can't build more than a single
	directory level associated with placement of its output files (a Doxygen bug, since the fix is simple!).
	
2001-10-09 Bobby Philip
	Removed files that were old and confusing to first time users of ROSE, added some files into different
	locations to improve directory structure of ROSE.  Modified autoconf/automake files as required to
	make new directory structure work.  Some minor modifications may yet remain.

********* Locally Modified *********
>Locally modified   Makefile.am
>Locally modified   configure.in
>Locally modified   makelinks
>Locally modified   EDG/configure.in
>Locally modified   EDG/src/Makefile.am
>Locally modified   ROSETTA/Makefile.am
>Locally modified   ROSETTA/addNonTerminal.C
>Locally modified   ROSETTA/build
>Locally modified   ROSETTA/configure.in
>Locally modified   SAGE/Makefile.am
>Locally modified   SAGE/configure.in
********* Needs CVS Update *********
********* FILES NEEDING A MERGE *********
********* Files Scheduled to be added *********
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/Makefile.Christian
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/Makefile.am
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/alignData.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/alignData.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/arrayInfo.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/arrayInfo.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/arrayReference.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/arrayReference.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/cacheInfo.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/cacheInfo.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/dependencies.incl
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/ofiles.incl
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/padding_conditions.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/padding_conditions.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/padding_tools.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/padding_tools.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/Padding/testPad.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/ArrayPaddingTransform.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/ArrayPaddingTransform.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/Makefile.Christian
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/Makefile.am
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/aptScope.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/aptScope.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/aptScopeType.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/arrayDeclInfo.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/arrayDeclInfo.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/arrayRefInfo.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/arrayRefInfo.h
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/dependencies.incl
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/ofiles.incl
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/pad_transform.C
+Scheduled for add      ExamplePreprocessors/A++Preprocessor/PaddingTrans/pad_transform.h
+Scheduled for add      ROSETTA/src/CxxGrammarMetaProgram.C
+Scheduled for add      ROSETTA/src/Makefile.am
+Scheduled for add      ROSETTA/src/ROSETTA_macros.h
+Scheduled for add      ROSETTA/src/addNonTerminal.C
+Scheduled for add      ROSETTA/src/addTerminal.C
+Scheduled for add      ROSETTA/src/constraint.C
+Scheduled for add      ROSETTA/src/constraintList.C
+Scheduled for add      ROSETTA/src/expression.C
+Scheduled for add      ROSETTA/src/grammar.C
+Scheduled for add      ROSETTA/src/grammar.h
+Scheduled for add      ROSETTA/src/grammarString.C
+Scheduled for add      ROSETTA/src/grammarTreeNode.C
+Scheduled for add      ROSETTA/src/node.C
+Scheduled for add      ROSETTA/src/nonTerminalList.C
+Scheduled for add      ROSETTA/src/nonterminal.C
+Scheduled for add      ROSETTA/src/statement.C
+Scheduled for add      ROSETTA/src/support.C
+Scheduled for add      ROSETTA/src/symbol.C
+Scheduled for add      ROSETTA/src/terminal.C
+Scheduled for add      ROSETTA/src/terminalList.C
+Scheduled for add      ROSETTA/src/type.C
+Scheduled for add      ROSETTA_EXAMPLES/Makefile.am
+Scheduled for add      ROSETTA_EXAMPLES/MetaProgramExample.C
+Scheduled for add      ROSETTA_EXAMPLES/ArrayASTRestructuringTool/ArrayGrammarMetaProgram.C
+Scheduled for add      ROSETTA_EXAMPLES/ArrayASTRestructuringTool/Makefile.am
+Scheduled for add      ROSETTA_EXAMPLES/ArrayASTRestructuringTool/littleA++.h
+Scheduled for add      ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/CxxGrammarMetaProgram.C
+Scheduled for add      ROSETTA_EXAMPLES/Cxx_ASTRestructuringTool/Makefile.am
+Scheduled for add      SAGE/grammarBaseClass.C
+Scheduled for add      SAGE/grammarBaseClass.h
********* Files Scheduled to be removed *********
-Scheduled for removal  ROSETTA/ArrayGrammarMetaProgram.C
-Scheduled for removal  ROSETTA/CxxGrammarMetaProgram.C
-Scheduled for removal  ROSETTA/MetaProgramExample.C
-Scheduled for removal  ROSETTA/grammar.C
-Scheduled for removal  ROSETTA/grammar.h
-Scheduled for removal  ROSETTA/grammarBaseClass.C
-Scheduled for removal  ROSETTA/grammarBaseClass.h
-Scheduled for removal  ROSETTA/grammarString.C
-Scheduled for removal  ROSETTA/grammarTreeNode.C
-Scheduled for removal  grammar.old_dir/.pure
-Scheduled for removal  grammar.old_dir/C++_grammar.include
-Scheduled for removal  grammar.old_dir/Cxx_GlobalDeclarations.macro
-Scheduled for removal  grammar.old_dir/Cxx_Grammar.C
-Scheduled for removal  grammar.old_dir/Cxx_Grammar.h
-Scheduled for removal  grammar.old_dir/Cxx_Support_Header.macro
-Scheduled for removal  grammar.old_dir/Makefile
-Scheduled for removal  grammar.old_dir/Makefile.am
-Scheduled for removal  grammar.old_dir/Makefile.in
-Scheduled for removal  grammar.old_dir/ROSE_ArrayGrammar.C
-Scheduled for removal  grammar.old_dir/ROSE_ArrayGrammar.h
-Scheduled for removal  grammar.old_dir/ROSE_Node.h
-Scheduled for removal  grammar.old_dir/aclocal.m4
-Scheduled for removal  grammar.old_dir/array
-Scheduled for removal  grammar.old_dir/array.C
-Scheduled for removal  grammar.old_dir/array.out
-Scheduled for removal  grammar.old_dir/arrayGrammar.include
-Scheduled for removal  grammar.old_dir/build
-Scheduled for removal  grammar.old_dir/config.cache
-Scheduled for removal  grammar.old_dir/config.log
-Scheduled for removal  grammar.old_dir/config.status
-Scheduled for removal  grammar.old_dir/configure.in
-Scheduled for removal  grammar.old_dir/copyMemberFunction.macro
-Scheduled for removal  grammar.old_dir/dataMemberAccessFunctions.macro
-Scheduled for removal  grammar.old_dir/generic_support.implementation
-Scheduled for removal  grammar.old_dir/generic_support.include
-Scheduled for removal  grammar.old_dir/grammar.C
-Scheduled for removal  grammar.old_dir/grammar.h
-Scheduled for removal  grammar.old_dir/grammarClassDeclatationMacros.macro
-Scheduled for removal  grammar.old_dir/grammarClassDefinitionMacros.macro
-Scheduled for removal  grammar.old_dir/grammarConstructorDefinitionMacros.macro
-Scheduled for removal  grammar.old_dir/grammarData.C
-Scheduled for removal  grammar.old_dir/grammarDestructorDefinitionMacros.macro
-Scheduled for removal  grammar.old_dir/grammarIsClassNameFunctionDefinitionMacros.macro
-Scheduled for removal  grammar.old_dir/grammarMainClassDeclatationMacros.macro
-Scheduled for removal  grammar.old_dir/grammarMainClassSourceCodeMacros.macro
-Scheduled for removal  grammar.old_dir/grammarString.C
-Scheduled for removal  grammar.old_dir/grammarTreeNode.C
-Scheduled for removal  grammar.old_dir/grammarVariantFunctionDefinitionMacros.macro
-Scheduled for removal  grammar.old_dir/node.macro
-Scheduled for removal  grammar.old_dir/nonTerminalList.C
-Scheduled for removal  grammar.old_dir/nonterminal.C
-Scheduled for removal  grammar.old_dir/parserCode.macro
-Scheduled for removal  grammar.old_dir/sageExpression.implementation
-Scheduled for removal  grammar.old_dir/sageExpression.include
-Scheduled for removal  grammar.old_dir/sageNode.implementation
-Scheduled for removal  grammar.old_dir/sageNode.include
-Scheduled for removal  grammar.old_dir/sageStatement.implementation
-Scheduled for removal  grammar.old_dir/sageStatement.include
-Scheduled for removal  grammar.old_dir/sageSymbol.implementation
-Scheduled for removal  grammar.old_dir/sageSymbol.include
-Scheduled for removal  grammar.old_dir/sageType.implementation
-Scheduled for removal  grammar.old_dir/sageType.include
-Scheduled for removal  grammar.old_dir/simpleGrammar.implementation
-Scheduled for removal  grammar.old_dir/simpleGrammar.include
-Scheduled for removal  grammar.old_dir/terminal.C
-Scheduled for removal  grammar.old_dir/terminalList.C
-Scheduled for removal  grammar.old_dir/transformGrammar.include
-Scheduled for removal  grammar.old_dir/transformationDesign.txt
-Scheduled for removal  grammar.old_dir/old_simpleGrammar/simpleGrammar.implementation
-Scheduled for removal  grammar.old_dir/old_simpleGrammar/simpleGrammar.include
-Scheduled for removal  grammar.old_dir/sageGrammar/GrammarSupport.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgExpression.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgLocatedNode.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgNode.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgStatement.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgSymbol.code
-Scheduled for removal  grammar.old_dir/sageGrammar/SgType.code
-Scheduled for removal  grammar.old_dir/sageGrammar/sageCommon.code
-Scheduled for removal  grammar.old_dir/sageGrammar/sourceCodeToGenerate.txt
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayExpression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayFunctionExpression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayOperandExpression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayOperator.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayParenthesisOperator.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ArrayVariableExpression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_BinaryArrayOperator.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_BinaryArrayOperatorAdd.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_BinaryArrayOperatorEquals.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_BinaryArrayOperatorMultiply.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_C_Expression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_C_Statement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ElseWhereStatement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_Expression.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ExpressionStatement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_ForStatement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_IfStatement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_Node.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_Statement.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_StatementBlock.code
-Scheduled for removal  grammar.old_dir/simpleGrammar/ROSE_WhereStatement.code
-Scheduled for removal  src/Padding/Makefile.Christian
-Scheduled for removal  src/Padding/Makefile.am
-Scheduled for removal  src/Padding/alignData.C
-Scheduled for removal  src/Padding/alignData.h
-Scheduled for removal  src/Padding/arrayInfo.C
-Scheduled for removal  src/Padding/arrayInfo.h
-Scheduled for removal  src/Padding/arrayReference.C
-Scheduled for removal  src/Padding/arrayReference.h
-Scheduled for removal  src/Padding/cacheInfo.C
-Scheduled for removal  src/Padding/cacheInfo.h
-Scheduled for removal  src/Padding/dependencies.incl
-Scheduled for removal  src/Padding/ofiles.incl
-Scheduled for removal  src/Padding/padding_conditions.C
-Scheduled for removal  src/Padding/padding_conditions.h
-Scheduled for removal  src/Padding/padding_tools.C
-Scheduled for removal  src/Padding/padding_tools.h
-Scheduled for removal  src/Padding/testPad
-Scheduled for removal  src/Padding/testPad.C
-Scheduled for removal  src/PaddingTrans/ArrayPaddingTransform.C
-Scheduled for removal  src/PaddingTrans/ArrayPaddingTransform.h
-Scheduled for removal  src/PaddingTrans/Makefile.Christian
-Scheduled for removal  src/PaddingTrans/Makefile.am
-Scheduled for removal  src/PaddingTrans/aptScope.C
-Scheduled for removal  src/PaddingTrans/aptScope.h
-Scheduled for removal  src/PaddingTrans/aptScopeType.h
-Scheduled for removal  src/PaddingTrans/arrayDeclInfo.C
-Scheduled for removal  src/PaddingTrans/arrayDeclInfo.h
-Scheduled for removal  src/PaddingTrans/arrayRefInfo.C
-Scheduled for removal  src/PaddingTrans/arrayRefInfo.h
-Scheduled for removal  src/PaddingTrans/dependencies.incl
-Scheduled for removal  src/PaddingTrans/ofiles.incl
-Scheduled for removal  src/PaddingTrans/pad_transform.C
-Scheduled for removal  src/PaddingTrans/pad_transform.h
-Scheduled for removal  src/SAGE/.pure
-Scheduled for removal  src/SAGE/C++_include_files.h
-Scheduled for removal  src/SAGE/Makefile.am
-Scheduled for removal  src/SAGE/SageLists.h
-Scheduled for removal  src/SAGE/SgAttribute.h
-Scheduled for removal  src/SAGE/SgFile.h
-Scheduled for removal  src/SAGE/SgFileInfo.h
-Scheduled for removal  src/SAGE/SgGlobal.h
-Scheduled for removal  src/SAGE/SgInitializedName.h
-Scheduled for removal  src/SAGE/SgModifierNodes.h
-Scheduled for removal  src/SAGE/SgName.h
-Scheduled for removal  src/SAGE/SgOptions.h
-Scheduled for removal  src/SAGE/SgProject.h
-Scheduled for removal  src/SAGE/SgSymbolTable.h
-Scheduled for removal  src/SAGE/SgUnparse_info.h
-Scheduled for removal  src/SAGE/attribute_list.h
-Scheduled for removal  src/SAGE/attributes.C
-Scheduled for removal  src/SAGE/attributes.h
-Scheduled for removal  src/SAGE/baseclass_list.h
-Scheduled for removal  src/SAGE/baseclasses.C
-Scheduled for removal  src/SAGE/baseclasses.h
-Scheduled for removal  src/SAGE/build
-Scheduled for removal  src/SAGE/configure.in
-Scheduled for removal  src/SAGE/containers.h
-Scheduled for removal  src/SAGE/edg_sage_compile_problems.txt
-Scheduled for removal  src/SAGE/enum_tag.h
-Scheduled for removal  src/SAGE/file_info.C
-Scheduled for removal  src/SAGE/file_info.h
-Scheduled for removal  src/SAGE/hashentry_list.h
-Scheduled for removal  src/SAGE/hashentry_vector.h
-Scheduled for removal  src/SAGE/initializedsym_list.h
-Scheduled for removal  src/SAGE/ir.out
-Scheduled for removal  src/SAGE/make.out
-Scheduled for removal  src/SAGE/modifications_to_EDG.txt
-Scheduled for removal  src/SAGE/modifications_to_EDG_2.C
-Scheduled for removal  src/SAGE/modifications_to_EDG_3.C
-Scheduled for removal  src/SAGE/sage3.h
-Scheduled for removal  src/SAGE/sage_basic.C
-Scheduled for removal  src/SAGE/sage_basic.h
-Scheduled for removal  src/SAGE/sage_bugs_from_gary.txt
-Scheduled for removal  src/SAGE/sage_expressions.C
-Scheduled for removal  src/SAGE/sage_expressions.h
-Scheduled for removal  src/SAGE/sage_forward.h
-Scheduled for removal  src/SAGE/sage_statements.C
-Scheduled for removal  src/SAGE/sage_statements.h
-Scheduled for removal  src/SAGE/sage_symbols.C
-Scheduled for removal  src/SAGE/sage_symbols.h
-Scheduled for removal  src/SAGE/sage_types.C
-Scheduled for removal  src/SAGE/sage_types.h
-Scheduled for removal  src/SAGE/sg_root.C
-Scheduled for removal  src/SAGE/sg_root.h
-Scheduled for removal  src/SAGE/symbol_table.C
-Scheduled for removal  src/SAGE/symbol_table.h
-Scheduled for removal  src/SAGE/type_list.h
-Scheduled for removal  src/SAGE/types.C
-Scheduled for removal  src/SAGE/unparse_info.C
-Scheduled for removal  src/SAGE/unparse_info.h.b00
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/Makefile.in
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/attributes.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/attributes.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/baseclasses.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/baseclasses.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/containers.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/containers.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/copy.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/copy.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/enum_tag.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/file_info.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/file_info.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/generic_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/generic_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/hashentry_vector.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/print_info.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/print_info.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sage2.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sage_array.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sage_basic.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sage_basic.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sage_forward.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sg_root.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/sg_root.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/symbol_table.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/symbol_table.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/traverse_tree.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/traverse_tree.h
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/types.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/unparse_info.C
-Scheduled for removal  src/SAGE/SAGE2_Source/baseclasses/unparse_info.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/Makefile
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/attribute_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/attribute_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/baseclass_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/baseclass_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/declstatement_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/declstatement_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/expression_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/expression_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/hashentry_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/hashentry_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/initializedsym_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/initializedsym_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/makefile_header
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_expressions.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_expressions.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_expressions_forward.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_statements.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_statements.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_statements_forward.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_symbols.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_symbols.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_symbols_forward.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_types.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_types.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/sage_types_forward.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/statement_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/statement_list.h
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/type_list.C
-Scheduled for removal  src/SAGE/SAGE2_Source/generated/type_list.h
-Scheduled for removal  src/TransformBaseClass/.pure
-Scheduled for removal  src/TransformBaseClass/Makefile.am
-Scheduled for removal  src/TransformBaseClass/TransformationBase.C
-Scheduled for removal  src/TransformBaseClass/TransformationBase.h
-Scheduled for removal  src/TransformBaseClass/copy.C
-Scheduled for removal  src/TransformBaseClass/edit.C
-Scheduled for removal  src/TransformBaseClass/targetTemplateFunction.C
-Scheduled for removal  src/TransformBaseClass/transformationTemplate.C
-Scheduled for removal  src/TransformBaseClass/transformationTemplateFunction.C
-Scheduled for removal  src/Transform_2/.pure
-Scheduled for removal  src/Transform_2/ArrayGrammar.h.b00
-Scheduled for removal  src/Transform_2/ArrayGrammar.h.b01
-Scheduled for removal  src/Transform_2/Makefile.am
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayFunctionExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayOperandExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayOperator.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayParenthesisOperator.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArraySQRT.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayVariableDeclaration.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_BinaryArrayOperator.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_BinaryArrayOperatorAdd.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_BinaryArrayOperatorEquals.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_BinaryArrayOperatorMultiply.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_C_Expression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_C_Statement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_C_VariableDeclaration.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ElseWhereStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_Expression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ExpressionStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_ForStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_IfStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_RealArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_Statement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_StatementBlock.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_UserFunction.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_VariableDeclaration.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_WhereStatement.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_doubleArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_floatArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/classDeclarationBody_ROSE_intArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/design.txt
-Scheduled for removal  src/Transform_2/grammar.C.bup
-Scheduled for removal  src/Transform_2/grammar.h.original
-Scheduled for removal  src/Transform_2/grammar.perl
-Scheduled for removal  src/Transform_2/grammarClassDeclatationMacros.macro
-Scheduled for removal  src/Transform_2/grammarClassDefinitionMacros.macro
-Scheduled for removal  src/Transform_2/ir.out
-Scheduled for removal  src/Transform_2/list.trash
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayFunctionExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayOperandExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayOperator.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayParenthesisOperator.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArraySQRT.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayVariableDeclaration.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_BinaryArrayOperator.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_BinaryArrayOperator.macro.b00
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_BinaryArrayOperatorAdd.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_BinaryArrayOperatorEquals.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_BinaryArrayOperatorMultiply.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_C_Expression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_C_Statement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_C_VariableDeclaration.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ElseWhereStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_Expression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ExpressionStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_ForStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_IfStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_Node.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_RealArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_Statement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_StatementBlock.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_UserFunction.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_VariableDeclaration.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_WhereStatement.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_doubleArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_floatArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/memberFunctionDefinition_ROSE_intArrayVariableExpression.macro
-Scheduled for removal  src/Transform_2/node.macro
-Scheduled for removal  src/Transform_2/roseVariants.h
-Scheduled for removal  src/Transform_2/transform_2.C
-Scheduled for removal  src/Transform_2/transformation_2.C
-Scheduled for removal  src/Transform_2/transformation_2.h
-Scheduled for removal  src/Transform_3/.pure
-Scheduled for removal  src/Transform_3/Makefile.am
-Scheduled for removal  src/Transform_3/ROSE_TRANSFORMATION_SOURCE_3.h
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_NonTransformableExpression.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_NonTransformableStatement.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableBinaryOperatorEquals.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableBinaryOperatorExpression.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableBinaryOperatorNonAssignment.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableExpression.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableOperandExpression.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableOperatorExpression.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableStatement.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableStatementBlock.macro
-Scheduled for removal  src/Transform_3/classDeclarationBody_ROSE_TransformableUnaryOperatorExpression.macro
-Scheduled for removal  src/Transform_3/directory_diff
-Scheduled for removal  src/Transform_3/grammar.perl
-Scheduled for removal  src/Transform_3/grammarClassDeclatationMacros.macro
-Scheduled for removal  src/Transform_3/grammarClassDefinitionMacros.macro
-Scheduled for removal  src/Transform_3/grammar_3.C
-Scheduled for removal  src/Transform_3/grammar_3.C.before_perl
-Scheduled for removal  src/Transform_3/grammar_3.h
-Scheduled for removal  src/Transform_3/grammar_3.h.before_perl
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_NonTransformableExpression.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_NonTransformableStatement.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableBinaryOperatorEquals.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableBinaryOperatorExpression.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableBinaryOperatorNonAssignment.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableExpression.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableNode.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableOperandExpression.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableOperatorExpression.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableStatement.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableStatementBlock.macro
-Scheduled for removal  src/Transform_3/memberFunctionDefinition_ROSE_TransformableUnaryOperatorExpression.macro
-Scheduled for removal  src/Transform_3/node.macro
-Scheduled for removal  src/Transform_3/operandDataBase.C
-Scheduled for removal  src/Transform_3/statementDataBase.C
-Scheduled for removal  src/Transform_3/stuff.C
-Scheduled for removal  src/Transform_3/transform_3.C
-Scheduled for removal  src/Transform_3/transform_3.C.b00
-Scheduled for removal  src/Transform_3/transformation_3.C
-Scheduled for removal  src/Transform_3/transformation_3.C.withRoseCases
-Scheduled for removal  src/Transform_3/transformation_3.h
-Scheduled for removal  src/Transform_4/classDeclarationBody_ROSE_DeclarationStatementBlock.macro
-Scheduled for removal  src/Transform_4/classDeclarationBody_ROSE_NonTransformableDeclarationStatement.macro
-Scheduled for removal  src/Transform_4/classDeclarationBody_ROSE_TransformableDeclarationStatement.macro
-Scheduled for removal  src/Transform_4/grammar.perl
-Scheduled for removal  src/Transform_4/grammarClassDeclatationMacros.macro
-Scheduled for removal  src/Transform_4/grammarClassDefinitionMacros.macro
-Scheduled for removal  src/Transform_4/grammar_4.C
-Scheduled for removal  src/Transform_4/grammar_4.h
-Scheduled for removal  src/Transform_4/memberFunctionDefinition_ROSE_DeclarationNode.macro
-Scheduled for removal  src/Transform_4/memberFunctionDefinition_ROSE_DeclarationStatementBlock.macro
-Scheduled for removal  src/Transform_4/memberFunctionDefinition_ROSE_NonTransformableDeclarationStatement.macro
-Scheduled for removal  src/Transform_4/memberFunctionDefinition_ROSE_TransformableDeclarationStatement.macro
-Scheduled for removal  src/Transform_4/node.macro
-Scheduled for removal  src/Transform_4/transformation_4.h
********* WARNINGS *********
********* ERRORS *********

2001-10-01 Markus Kowarschik
	There are two different tree traversal mechanisms available now.
	A describtion of how these mechanisms work can be found in the
	file ROSETTA/treeTraversal.txt. A simple example showing how each
	of these mechanisms is used can be found in src/rose_treeTrav_MK.C.

2001-09-05 Markus Kowarschik
	Unified the introduction of data members and function members (ROSETTA).
	The member function of class Terminal now has (among others) three boolean parameters
	which determine
	- if the corresponding data member is to become a constructor parameter
	- if the corresponding access functions are to be created
	- if the data member is to be traversed during a tree traversal

2001-09-05 Dan Quinlan
	Added initial work on Query mechanism plus some examples.
	Moved STL to STL-1995 and we now use STL-link as a link to whichever version of STL is in use.
	Tried to use the newest version of STL from SGI, and STLPort (neither work for Sun C++ 4.2 compiler.
	Fixed configuation issues associated with C code having the STL path specified (not done now).
	Continued adding multiple file compilation support for preprocessors build using ROSE (still incomplete).
	Tested ROSE/src/rose example preprocessor against PetSc, worked on level 4, but not on level 5, which 
	means that the unparser fails to unparse the C code correctly :-(.

2001-08-27 Dan Quinlan
	Fixed configure script "makelinks" to build TESTS/PerformanceTests direcotry
	before cd'ing into it (since a freash checkout from CVS does not include this directory yet).
	
2001-08-27 DAN QUINLAN

	* FIXED TRANSFORMATION SPECIFICATION CODE TO HANDLE TRANSFORMATION
 	ON ANY TYPE OF STATEMENT (NOT EXPRESSIONS OR TYPES YET).

	* ADDED PREPEND, REPLACE, AND APPEND AS OPERATIONS ASSOCIATED WITH
 	HOW A TRANSFORMATION IS ADDED TO THE APPLICATION PROGRAM'S AST
 	(THE MAIN AST).

	* FIXED CONFIGURATION TO MAKE THE PERL ENABLED TESTING FRAMEWORK
 	(PETF) OPTIONAL (DISTRIBUTION TESTS VIA THE DISTCHECK RULE WERE
 	FAILING).

	* ADDED FIRST VERSION OF QUERY MECHANISM TO THE TRANSFORMATION
 	SPECIFICATION (THIS NEEDS A LOT MORE WORK HOWEVER), THE FILES ARE
 	QUERY.H AND QUERY.C IN THE ROSE/TransformationSpecification
 	directory.
	
2001-08-14  Markus Kowarschik (comments by Dan)
	Bugs fixed by Markus (he needs to comment on what is present in this checked in version of ROSE).
	Initial version of global tree traversal.
	Current version is: 0.4.9a
	
2001-08-10  Dan Quinlan
	This is the first checkin in a long time.  Markus also has to check work in and so I wanted to checkin
	things first plus get the "make distcheck" mechanism working for everyone else.  It seems to not work
	in the version of ROSE presently in the CVS repository.  This should simplify everyones work of making
	sure that their changes have not broken anything in ROSE.
	Numerous details are missing from the list below.  I have not checked in my own work frequently enough.
	A few of the things fixed in this version are:
      * Fixed DOXYGEN files so that Doxygen can be run from by make (but not run withouth explicitly specification).
      * Added (more) support for generation of grammars from class declarations.  Only simple stuff is working, and
	I forget if the output AST restructuring tool even compiles properly.
      * Finished first verion of transformation specification mechanism. (Only simple stuff works).
      * Fixed Makefile.am(s) so that "make dist" works correctly now.
      * Fixed Makefile.am(s) so that "make distcheck" works correctly now.

2001-06-01 through 2001-08-10  Dan Quinlan
	ChangeLog was not updated, I think there was nothing checked in since Markus and I were writing papers
	and I was away at numerous conferences.  A lot of work was done, but not checked in.  Markus
	has been working on the global tree traveral support (to be generated by ROSETTA) and he has
	fixed numerous bugs which he has documented outside of this file).  Dan has been working on the 
	generation of grammars from the class declarations and the specification of transformations.
	
2001-05-30  Dan Quinlan
	Changed default in EDG to permit compiling exceptions. Fixed one of several bugs in the 
	AST restructuring tool to handle exceptions. There is still more left to fix. In the case where
	it is fixed in the AST restructuring tool (generated SAGE code), the unparser does not 
	generated the corect code.  dqDevelopmentDirectory/test2001_29.C demonstrates the error.
	
2001-05-29  Dan Quinlan
	Fixed bug in Node::setTreeNodeAsTouched() in the files used to generate the AST restructuring Tools
	for each grammar.  The bug was noticed by Markus K.
	
2001-05-23  Dan Quinlan
	Checked in Markus's additions for ROSE/src/pdf_ast.C.
	Erin discovered that catch and try statements don't work in EDG and once we turned 
	on the exception handling in EDG we discovered that they don't work in SAGE II.  
	This is an STL issue that is not implemented. There is a note about this in the TODO list.
	
2001-05-08  Dan Quinlan
	Made final fixes to configuration and ran test with purify using Sun C++ 4.2 and KCC 3.4g.
	Fixed use of acmacros in ROSE/SAGE (previously not calling test for bool directly).
	Released version 0.4.8a (checked it into the CVS repository).

	KCC configure line tests:
	configure   --with-CC='KCC --c'
	            --with-CXX=KCC
	            --enable-dq-developer-tests 
	            --with-AxxPxx=/home/dquinlan/ROSE/A++P++Install 
	            --with-CXX_DEBUG='-g +K0 -k' 
	            --with-C_DEBUG='-g +K0 -k'
	
2001-05-07  Dan Quinlan
	Fixed bugs in sage_gen_be.C and the A++ specific grammar that were a problem for KCC with purify.
	This seems to fix all purify problems reported when using KCC on the Solaris platform.
	The final two bugs had to do with copying "char*" strings so that SAGE could have it's
	own copy and avoid using anything from EDG directly.
	
2001-05-06  Dan Quinlan
	Fixed unparser error that only appeared with the KCC compiler.  Modified in 
	modified_sage.C (for global functions) and unparse_stmt.C (for member functions) files.
	
          // Output of a Null string seems to be an problem with
          // some ostream implementations (KCC for example).
          #if 0
               if (do_unparse)
                    (*os) << tmp_name.str();
               if (tmp_name.str() != NULL)
                    chars_on_line += strlen(tmp_name.str()); 
          #else
            // This is a more consistant way to handle the NULL string case
               if (tmp_name.str() != NULL)
                  {
                    if (do_unparse)
                         (*os) << tmp_name.str();
                    chars_on_line += strlen(tmp_name.str());
                  }
          #endif

2001-05-05  Dan Quinlan
	Fixed asserts:
	    SgName X;
	    assert (X != NULL);
	This code caused the SgName constructor to be called with the value "NULL" and then
	called the operator!=().  This only appeared to happen with the KCC compiler and 
	not on the SUN CC 4.2 compiler.

2001-05-04  Dan Quinlan
	PORTABILITY ISSUE: Fixed bug in EDG/util/edg_prelink.c.
	    KCC header files don't specify "FILE *popen(const char *command, const char *mode);"
	correctly. To KCC "FILE*" is an int, or popen is defined to return an int at least.
	The following file demonstrates the problem:
	
2001-04-27  Dan Quinlan
	Fixed numerous minor bugs and fixed ArrayPreprocessor as an example preprocessor.
	Checked in version representing fixes before addressing portability issues.
	
2001-04-12  Dan Quinlan
	Fixed the generation of the array grammar from the C++ grammar, file: ArrayGrammarMetaProgram.C
	generates the array grammar (actually both the C++ grammar and the array grammar).
	More work is required to cause sage to process the file and suplement the array grammar
	with the member functions of the array class (this used to work, I'm just making it work
	under the newer versions of the code).
	
2001-04-10  Dan Quinlan
	Checked in a version just before noon to CVS. This version 0.4.6a passedall tests and was
	tagged using "cvs rtag ROSE-0-4-6a-release ROSE".

	This version also has preliminary support for the tree traversal code (setting of a "touched"
	flag in every node of the AST).  More work to do on automating the generation of code to do 
	the tree traversal.
	
2001-04-9  Dan Quinlan
	Added files for ExamplePreprocessors/A++Preprocessor.  This preprocessor is specific
	to A++.
	
2001-04-9  Dan Quinlan
	Fixed command line bug associated with previous addition. The SgFile object now saves 
	a reference to the argc and argv input to main.  These are modified by different phases
	of the command line processing (for ROSE, EDG, and for the final C++ compiler pass).

	Command line processing implementation note:
	ROSE options are stripped off by the ROSE option processing phase and EDG specific 
	options are stripped off by the EDG option processing phase. Each phase builds a 
	separate command line using the command line input to the ROSE preprocessor. Each 
	phase also adds some additional options to the separate command lines that each phase 
	constructs. Remaining options are passed on the compilation phase.
	
2001-04-8  Dan Quinlan
	Placed calls to generate EDG and SAGE AST's into the constructor for SgFile. The SgFile
	constructor is called by SgProject, this simplifies the design of prerocessors much 
	further than before.

	Expanded the features of the SgFile and SgProject objects within the ROSE grammars.
	This was done as part of the simplification of the interface of ROSE.  Several of the
	most top level EDG/SAGE functions (in EDG/src) now take SgFile objects (e.g. edg_main(),
	sage_back_end() and init_sage_cp_gen_be()). Copied ROSE/include/rose_attributes_list.h
 	to ROSE/SAGE/rose_attributes_list.h and ROSE/src/rose_attributes_list.C to
	ROSE/SAGE/rose_attributes_list.C (and removed these from their previous locations.
	This was done to place these lists where they were referenced now that they are stored
	(now that they are stored in the SgFile object).
	
2001-04-7  Dan Quinlan
	Simplified the construction of preprocessors (the default one "rose.C" built in ROSE/src).
	This is in preparation for a directory of preprocessors that demonstrate the use of
	ROSE to build multiple preprocessors. Checked in the results of this work this morning.

	Note: This has disabled the features specific to the array optimizations which have to 
	be added to the preprocessor located in the ROSE/ExamplePreprocessors/A++Preprocessor
	directory.
	
2001-04-6  Dan Quinlan
	Added
             AliasedDPtr.C                Array.C                                 DPtr.C \
             Face_inline.C                List.C                                  NormedFab.C \
             PArray.C                     SimpleDPtr.C                            tlist.C \
             ArithFab.C                   BaseFab.C                               FabArray.C \
             Geom_inline.C                ListOfReferenceCountedObjects.C         OrderedFab.C \
             Pointers.C                   Tuple.C \
	to the automake EXTRA_DIST in ROSE/TESTS/CompileTests/OvertureCode directory to fix 
	the execution of the "make distcheck" rule generated by automake.
	
2001-04-5  Dan Quinlan
	Added TESTS/CompileTests/OvertureCode direcotry.  Fixed bug in EDG/SAGE connection
	which prevented compilation of Overture code using ROSE.  Added OvertureBug_01.C to 
	OvertureCode direcotry to represent the fixed bug.  

	Added error checking to EDG/SAGE (sage_gen_be.C and sage_il_to_str.C) to check the
	value of the curr_source_sequence_entry pointer.  
             assert (curr_source_sequence_entry != NULL);
	I also had to disable a few of these asserts because of how the SAGE AST generation 
	is designed (or not designed) to walk off the end of the source sequence list.
	I wanted to assert that this pointer would never be NULL, but this is the stopping 
	criteria for the "for (;;)" loop in sage_process_file_scope_entities(SgGlobal& top).
	We need better stopping criteria so that we can universally assert that 
	curr_source_sequence_entry is not NULL.  My first fix caused infinite loops :-).

	Fixed up the tests run by "make check" and the configuration so that "make dist"
	runs properly.

	Removed numerous files from my development version (files not longer generated because 
	we properly use the -fourien flag to automake).  Getting ready for next big phase of work
 	on automated generation of support for the transformation specification mechanism.
	
2001-04-3  Dan Quinlan
	Added TESTS/CompileTests and TESTS/RunTests direcoties (or directories) of tests.

	Fixed the AM_CONDITIONAL in ROSE/configure.in to be correctly when we don't specify a
	path to the A++/P++ library.

2001-04-2  Dan Quinlan
	Reorganized the TESTS directory to divid it between two directories (CompileTests and RunTests).
	Finished on related bugs and errors in the distribution system using autoconf and automake.

2001-04-1  Dan Quinlan
	Fixed distributions built using "make dist" to work correctly.  Most tests
	are still using "-rose:test 6" (level 6 testing) because the translation from
	the SAGE AST to the higher level ASTs is not robust yet.

	NOTE: the use of "make distcheck" still fails, I think because configure requires the
	"--with-sla=/usr/casc/overture/local-sparc64-sun-solaris2.7" option.  The use of
	"make distcheck" assumes that "configure --srcdir=.. --prefix=$$dc_install_base"
	will correctly configure the distribution (not other options can be specified).

	Removed dependence upon the external use of SLA by including the sla.c and slaxx.C
	into the ROSE/src/command_line_options directory and puting the sla.h header file into
	the ROSE/include directory.  This simplifies the use of ROSE by removing the requirement of
	any options on the command-line for "configure" (which shoudl allow "make distcheck" to work.
	
2001-03-30  Dan Quinlan
	Fixed preprocessor built with ROSE to correctly do array transformations.
	
2001-03-25  Dan Quinlan
	Started fix for dypedeclarations asspocated with variable declarations arising from
	     struct tag { int x; } X;
  	This is currently unparsed as 
	     struct tag X;
	The type declaration is separated out and placed into the orphan list within each scope,
	but SAGE (and even EDG's unparser) ignores entries in this list and so the typedeclaration
	is not placed into the SAGE AST (or output using the EDG C++ unparser).  I want to checkin
	the current changes to CVS before continuing to work on this bug.  Currently now A++ code is
	effected by this problem.

	The first declaration mechanism within the EDG tree does not seem to work, though domain.C
	was able to turn it on at some point (I don't know how this mechanism works, since it does not
	seem to work the way it is supposed to).
	
2001-03-25  Dan Quinlan
	Added previously unimplemented pdf versions of code to EDG/src/displayTree.C
	Fixed numerous minor bugs in displayTree.C (added pdf version of walk list macro)

2001-03-24  Dan Quinlan
	Fixed typedefs of function and member function pointers.
	
2001-03-21  Dan Quinlan
	Fixed Makefile.am in ROSE/dqDevelopmentDirectory directory to avoid building anything when rose is made
	and added support to permit rose to be tested when "make check" is run.

2001-03-20  Dan Quinlan
	Added ROSE/TESTS and ROSE/dqDevelopmentDirectory directories.

2001-03-19  Dan Quinlan
	Wrote PDF display mechanism for EDG and SAGE ASTs (work great but still somewhat incomplete).
	EDG AST is traversed using the scopes instead of the source_sequence_lists.  Likely need both.

2001-03-10  Dan Quinlan
	Separated files associated with sage_gen_be.C (to make this file shorter and permit
	common parts to be used by displayTree.C).
	
2001-03-1  Dan Quinlan
	Changed version number to be consistant with previous work (0.3.9 was the last used (last year)).
	So I made the current version 0.4.1a.
	
2001-02-28  Dan Quinlan
	Added support for PDF files (part of AST generator (not finished))
	
2001-02-27  Brian T. N. Gunney  <gunney@cogneato.llnl.gov>

	* config/ROSE.m4: Fixed Dan's C and C++ specification macros so that
	the environment is checked if configure flags are not specified
	for compilers.

2001-02-27  Dan Quinlan
	* Finished first pass at support for extern "C" surrounding header files.
	Currently we limit the use of this approach to the following two cases:
             1) opening brace on the same line as the extern "C" modifier:
 	          extern "C" {
                  #include <filename>
                     }
             2) opening brace on the following line:
 	          extern "C"
                     {
                  #include <filename>
                     }
	In each case the closing brace is introduced AFTER the NEXT "#include<filename>" 
	directive. So a limitation that we place on the use of this technique is that it 
	must be done for each file separately. A more robust mechanism will likely be 
	implemented later. test2001_18.C currently is used to test this mechanism.

	* Commented out function invocation from member function pointer in 
	A++/src/array_src/lazyarray.C.  Built test code test2001_19.C to test this
	problem.  lazyarray.C can now be processed through ROSE and the output
	compiles properly (this code is not used in A++ anymore, be we will fix 
	it anyway (shortly)).

2001-02-26  Dan Quinlan
	*Fixed bug in the unparsing (unparse_exp.C) of the function pointer 
	used to call functions.
	
	*Fixed bug in construction of sage calsses from EDG (enumVal was not 
	being specified with a SgName using a value string).
	
2001-02-25  Dan Quinlan
	Added support for extern "C" (which is turned off in this version I'm checking in).
	This work is still incomplete.
	
2001-02-24  Dan Quinlan
	Added purify support for EDG directory.
	Fixed use of EDG with purify (it requires purify.h if purify is used at link time).
	Basically EDG supports only the purify API, and does not work well with the purify 
	used as a linker only.

	Added referenceCount variable to SgNode object.
	
2001-02-23  Brian T. N. Gunney  <gunney@cogneato.llnl.gov>

	* config/support-purify.m4: Added file with macros to support optional
	purify linking and api.
	
2001-02-22  Dan Quinlan
	* Fixed numerous bugs represented in the first 13 test codes 
	(test2001_02.C - test2001_13.C in the ROSE/dqDevelopmentDirectory).
	17 of the 21 A++ C++ files presently compile in src/array_src.

	* extern "C" #include <filename.h> is still an issue.

	* Modified sage_gen_be to fix printing of type name for SgConstructorInitializer 
	objects when they appear in the return type (SgReturnType).

2001-02-22  Brian T. N. Gunney  <gunney@cogneato.llnl.gov>

	* build, EDG/build, ROSETTA/build, SAGE/build: Specify --foreign
	in automake to prevent the introduction of the GPL statement.

	* makelinks: Checkout or export acmacros if required.

	* distcheck: Working towards a distribution that will pass distcheck.
	Source code directories ok now.  EXAMPLES not fixed yet.  We have
	to make rose behave treat more compiler flags correctly first.

	* src/ListT: Made src/ListT automake-controlled to produce correct
	distribution.

2001-02-22  Dan Quinlan
	Fixed bug in the placement of the object file when using the compile tree
	separated from the source tree.

2001-02-21  Brian T. N. Gunney  <gunney@cogneato.llnl.gov>

	* SAGE: Added top level SAGE directory.  src/SAGE is now obsolete.
	Copied only required files from src/SAGE to SAGE.  The rest of the
	files are obsolete.

	* Configuration: Moved SAGE from src to the top level directory
	so other packages can view it as an independent package.

	* configure.in: Allow specifying A++P++ for testing.
	Specifying A++ alone is obsolete.

2001-02-18  Dan Quinlan
	Fixed bug in preproc.lex.
	Previously we had to have a space in all #include preprocessor statements.
	This is not required for many C and C++ compilers, so this is now fixed.

	// previous note added to the test2001_03.C file:
           Note: Must have space between the "include" and the "<filename>" substrings
                #include <stdlib.h>

	* Fixed bug in the printing of boolean values (used to be upper case and is not lower case).
	  This effects the printing of values like "true" and "false" (now a standard part of C++).

2001-02-17  Dan Quinlan
	*Fixed edg_main to return error level which is then used to conditionaly process
	phases after the edg front-end.  This simplifies development work of applications using ROSE.
	*Fixed another of the unparser bugs (test2001_02.C).

2001-02-12 Brian T.N. Gunney <gunneyb@llnl.gov>
	* configure.in: Support with-Axx flag.
	* EXAMPLES/Makefile.am: Pass Axx_INCLUDES environment to test script.
	* EXAMPLES/test1_script: Use environment variable Axx_INCLUDES.

2001-02-12 Brian T.N. Gunney <gunneyb@llnl.gov>
	* Configuration: Removed obsolete configure.in files.
	Changed generic PADRE_ macros and variables to generic
	BTNG_ variables, now that they are not maintained under
	PADRE anymore.  Removed obsolete generated EXAMPLES/aclocal.m4.
	* compiler-id.m4: Change compiler id strings so they are all
	standardized to lower case.
	* compiler-ar.m4: Defines macro to determine how to create
	static and dynamic libraries.

2001-02-09  Dan Quinlan
	*Fixed one of the unparser bugs (test2001_01.C).
	
2001-02-09 Brian T.N. Gunney <gunneyb@llnl.gov>
	* ROSETTA: Removed generated Cxx_Grammar.[Ch] files.
	They are now generated by a local rule in ROSETTA.
	Links are set up by config.status to create links to
	the generated Cxx_Grammar.[Ch] in the compile tree.
	* EDG: Dumped old configuration and replaced with one
	using automake.

2001-02-08 Brian T.N. Gunney <gunneyb@llnl.gov>
	* Configuration: Added use of acmacros.  Make check in EDG now
	runs make all first.

2001-02-05 Brian T.N. Gunney <gunneyb@llnl.gov>
	* Configuration: Overhauling configuration.  Some files added.
	Many obsoleted and removed.  Currently unstable.

2001-01  Dan Quinlan
	Checked in several months of changes to CVS repository.
	
2000-12  Dan Quinlan
	Added feature in ROSE preprocessors to permit the compiler to be called on 
	the unparsed output code after ROSE preprocessing (to be consistant with 
	the C or C++ compiler so that ROSE preprocessors act as a frontend for the 
	C or C++ compilers.
	
2000-11  Dan Quinlan
	Fixed preprocessors built by ROSE to use files consistant with with the way they are used by
	compilers so that autoconf projects can substitue the name of a ROSE preprocessor to 
	replace the name of the C or C++ compiler and test th use of ROSE.

2000-10  Dan Quinlan
	Fixed the commandline interface to be similar to KCC (somewhat) and provide multiple
	levels of testing internally.
	
2000-09  Dan Quinlan
	Fixed numerous minor erros in the unparsing to get back the simlarly formated
	output as input feature of the rose preprocessors.
	Command line processing now using SLA (Brian Gunney's work).

2000-07-26  Danny Thorne

   Put a bunch of new documentation in the preinit stage.  Fixed a couple
   miscellaneous bugs that I encountered along the way.  Deleted a bunch of 
   extraneous stuff that was left over from past experiments.  Surrounded most 
   preinit related IO with #if PREINIT_VERBOSE ... #endif.  Hence, 
   PREINIT_VERBOSE==FALSE will eliminate almost all output during the preinit 
   stage.  PREINIT_VERBOSE is currently defined at the top of sage_gen_be.C.

2000-07-24  Danny Thorne 

   I have almost decided on abandoning the SgTemplateInstantiation classes and 
   just using the existing SgClass classes to handle templates in SAGE/ROSE.  
   Currently I'm browsing EDG/src/templates.c and such in order to figure out 
   how to get the template parameter lists into SAGE.

   Spoke with Dan after lunch today.  He supports the idea of just using the
   SgClass classes instead of SgTemplateInstantiation classes.

   Trying to figure out how EDG does the substitution of template arguments for
   template parameters throughout the body of the template when it is 
   instantiated.  It seems to be happening during push_scope_full() in 
   scope_stk.c, but I can't figure out exactly how, yet.  Will need to modify 
   the way this works in order to be able to reverse the process within the 
   ROSE unparser.

2000-07-21  Danny Thorne 

   Fixed a memory management problem in the unparser.  At the end of unparser.C, 
   we were calling dir_list.deepClean() and then delete dir_list, but the 
   destructor for dir_list reproduces the call to dir_list.deepClean().  This 
   gives rise to an error in Purify, and I fixed it by just removing the 
   redundant call to dir_list.deepClean().  Now only the "delete dir_list" 
   remains.  Note, the same problem and fix exist for dir_listList, as well.
 
   Trying to figure out how to proceed with handling template instantiations in
   SAGE/ROSE.  I'm concerned about whether it is actually better to have 
   explicit SgTemplateInstantiation classes in SAGE or to just add some members 
   to the existing SgClass classes in order to represent template instantiations 
   that way.  It might be easier to handle template instantiations with SgClass 
   classes and just add some extra stuff.  In fact, I'm not sure what extra stuff 
   is even needed at this point.  We're storing the template args in the SgName 
   class.  We should probably store template parameters in the SgName class as 
   well.  Maybe there is nothing to motivate a SgTemplateInstantiation class.

   What's a "prototype instantiation of a class"? cf. class_decl.c, 
   decl_member_function(), and symbol_table.h, struct a_template_instance.

2000-07-20  Danny Thorne 

   Worked around my problems with STL and am successfully printing out the 
   template arguments into a comment from unparseClassDeclStmt().

2000-07-19  Danny Thorne

   Fixed the core dump when running ROSE on the STL sample code.  

   The problem was that in sage_gen_lvalue(), somehow sageExpr1 was NULL in a 
   call to the SgConditionalExp() constructor.  

   It was happening because, previous to the call to the constructor, I was
   checking if( sageExpr1 = NULL) when I should have been checking 
   if( sageExpr1 == NULL). Same problem for sageExpr2, by the way.

   Now everything is initialized on the first preinit pass in the STL code!
   That's with TEMPLATE_INSTANTIATIONS_IN_SAGE == FALSE, by the way.

   With TEMPLATE_INSTANTIATIONS_IN_SAGE == TRUE the preinit stage ends normally
   when no progress is made on the second pass, then SAGE core dumps in 
   sage_form_template_args() when assert(tap->variant.type->kind == 
   tk_ptr_to_member) fails.

   Fixed this by handling the case tap->variant.type->kind != tk_ptr_to_member
   seperately.  In the case that tap->variant.type->kind != tk_ptr_to_member,
   the call to sage_form_type() withing sage_form_template_args() doesn't
   need a non-NULL pointer to the class under which the current argument
   type is a member, so I just pass a NULL pointer to sage_form_type() in this
   case.  Now ROSE terminates normally with the STL code when 
   TEMPLATE_INSTANTIATIONS_IN_SAGE == TRUE and the preinit stage is turned on.  
   Note that ROSE still core dumps on this STL code when 
   TEMPLATE_INSTANTIATIONS_IN_SAGE == TRUE and the preinit stage is skipped.
   This is a milestone in the developement of the preinit stage.

   Attempting to arrange for the unparser to output the template args within
   a comment in the appropriate place.  Somehow, though, the template arg lists
   are always empty when encountered in the unparser.  I've verified that they
   are not empty in SAGE.

   I think we need to teach the SgName copy constructor to handle template args.

   Yes, that did it.  I added p_TemplateArgs = n.get_TemplateArgs() to
   
      $GRAMMAR_PREFIX_Name::$GRAMMAR_PREFIX_Name(const $GRAMMAR_PREFIX_Name& n)

   and I added p_TemplateArgs = n1.get_TemplateArgs() to

      $GRAMMAR_PREFIX_Name&
      $GRAMMAR_PREFIX_Name::operator=(const $GRAMMAR_PREFIX_Name& n1)

   both of which are in ROSE/ROSETTA/Grammar/Support.code.

   Now the TemplateArgs field remains non-empty when it is supposed to.

   Having trouble iterating through the list of arguments.  Technical difficulties
   with STL, I guess.  I seem to be doing it the same way that it's done in other
   places in unparse_stmt.C, but it's not working for me.

2000-07-11  Danny Thorne

   Trouble-shooting a problem in sage_form_template_args() where
   tap->variant.type->kind != tk_ptr_to_member.  See the comments in this function
   (it's in sage_il_to_str.C).

   Inserted code in sage_preinit_source_sequence_entity_check_types() and
   sage_preinit_source_sequence_entity_check() to output the filename and
   line number of the source entities associated with the IL entries. Also
   completed inserting code to output the name (source_corresp.name)
   associated with the IL entries.  Previously this was being done in only
   a selection of cases.  In fact, it is still the case that there are cases
   for which nothing at all is being output, but these correspond to the
   cases which are not yet implemented in the preinit stage.

   Did some miscellaneous, primarily cosmetic, editing in sage_gen_be.C.

   Note that I currently have END_PREINIT_ON_LACK_OF_PROGRESS turned on which means 
   that the preinit stage will terminate if the latest pass didn't result in 
   anything new being initialized from the previous pass.  This flag is near the 
   top of sage_gen_be.C along with another flag called MAX_PREINIT_PASSES which
   is currently set to 10.

   Did a CVS checkin.

2000-07-10  Danny Thorne
 
   The core dump was because one of my FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
   snippets had "&& FALSE" after it, so current_preinit_task_failed was not
   getting set to TRUE in that case.  I fixed that and now get multiple passes
   of the preinit stage, but no progress is being made after the first or
   second pass.

   Eliminated all the stuff in the preinit stage that tried explicitly to manage
   what order things get created in.  We shouldn't have to do that now that the
   current_preinit_task_failed mechanism is in place.

   Trying to debug a really unusual problem:  Upon return from sage_gen_type_reference()
   within sage_gen_name_reference(), several functions are removed from the bottom
   of the call stack.  This is really weird, and I don't yet have any ideas how
   to fix it.

   Finally fixed it like this: (Note that the FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
   section constitutes the fix, and the !FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
   section is what was there before.) 

      static void sage_gen_name_reference(char *entry, an_il_entry_kind kind )
      /* Routine to be called by the il_to_str routines to output a name.  */
      {
        a_SgDeclarationStatement_ptr * tmp =
          (Globals::nameReference) ? Globals::nameReference : &dummyDecl;
        Globals::nameReference = 0;

        /* Types get handled specially; everything else goes through the normal gen_name. */
        if (kind == iek_type) {
      #if FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES && /*TESTING=*/TRUE
          a_SgDeclarationStatement_ptr pre_tmp =
             sage_gen_type_reference((a_type_ptr)entry);
          if( preinit_pass && current_preinit_task_failed ) return;
          if( pre_tmp == NULL && tmp == Globals::nameReference )
          {
            //
            // [DT] 7/10/2000 -- NOTE: Assigning *tmp = NULL can give rise
            //      to a really flakey core dump when tmp == Globals::nameReference.
            //      Somehow it corrupts the stack.  In the debugger, it looks like
            //      several functions are mysteriously removed from the bottom of
            //      the call stack.  The consequences of this are not felt until
            //      later, several calls down in the stack from here.
            //
            //      So, anyway, if somehow sage_gen_type_reference() returns
            //      NULL without setting current_preinit_task_failed to TRUE,
            //      I'm just going to exit here before trying to assign
            //      *tmp = NULL in the case that tmp == Globals::nameReference
            //      to start with.
            //
            printf("\n\n\nsage_gen_be.C: sage_gen_name_reference() -- Unhandled condition.  Exiting.\n\n\n");
            exit(1);
          }
          *tmp = pre_tmp;
      #else /* !FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES */
          *tmp = sage_gen_type_reference((a_type_ptr)entry);
      #endif /* FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES */
        } else {
          // todo?
          gen_name((a_source_correspondence *)entry, kind,
                   (a_boolean)octl.force_qualified_name);
        }  /* if */
      }  /* sage_gen_name_reference */

   Evidently it was not a good thing to assign *tmp = NULL.

   Well, I've since found out that it's sometimes not good to assign even
   something non-NULL to *tmp.  The same flakey core dump associated with
   a corrupted stack can occur.

   Fixed it with this:

      #if 0
        a_SgDeclarationStatement_ptr * tmp =
          (Globals::nameReference) ? Globals::nameReference : &dummyDecl;
      #else
        a_SgDeclarationStatement_ptr * tmp = &dummyDecl;
      #endif

   Note that tmp actually is not useful in this routine at all.  It stores
   the return value from sage_gen_type_reference(), but it's never used
   after that.  I wonder what the SAGE developers had in mind for tmp here.

2000-07-8  Danny Thorne

   Finished introducing the current_preinit_task_failed mechanism
   in sage_gen_be.C.  Now I need to do it in sage_il_to_str.C.

   Finished sage_il_to_str.C also.  (It's shorter than sage_gen_be.C.)

   Getting a core dump on the second pass currently.  

2000-07-7  Danny Thorne

   Note: One of the main things that I'm doing in SAGE is like this:

         a_SgType_ptr theType=sage_gen_type(type);
      #if FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
         if( preinit_pass && current_preinit_task_failed ) return NULL;
         if( theType == NULL ) { /* ?? */ }
      #endif /* FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES */

   Just a check after any call to a SAGE routine for the state of the current_
   preinit_task_failed flag.  Note that I'm including a check on the thing
   being returned by the SAGE routine, in the case that current_preinit_task_
   failed is FALSE, but doing nothing about it.  I think that there may be some
   cases when something should be done with the SAGE routine returns a NULL
   value without setting the current_preinit_task_failed to TRUE.  At least, it is
   not always acceptable to simply assert that the return value is non-NULL.

   Note: Sometimes I have to transform something like this:
  
      result=new SgCastExp(fi(type), (a_SgExpression_ptr)0L, sage_gen_type(type),0);

   into something like this:

      #if FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
         a_SgType_ptr theType = sage_gen_type(type);
         if( preinit_pass && current_preinit_task_failed ) return NULL;
         if( theType == NULL ) { /* ?? */ }
         result=new SgCastExp(fi(type), (a_SgExpression_ptr)0L, theType,0);
      #else /* FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES */
         result=new SgCastExp(fi(type), (a_SgExpression_ptr)0L, sage_gen_type(type),0);
      #endif /* FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES */

2000-07-6  Danny Thorne

   Ditto.

2000-07-5  Danny Thorne

   Continued working on the current_preinit_pass_failed mechanism.  Started 
   working from the top of sage_gen_be.C and covering every function in the 
   order that they appear in the file.

2000-07-4  Danny Thorne

   Added current_preinit_pass_failed to sage_gen_be.C and externed it from 
   sage_il_to_str.C and began incorporating it into the codes.  Note that I also
   externed preinit_pass from sage_gen_be.C in sage_il_to_str.C.

2000-07-3  Danny Thorne

   Working on implementing the mechanism discussed at the end of the day Friday 
   with Dan.  Went to speak with Dan and browse the code.  This lasted all afternoon.

   One thing I realized while browsing the code with Dan is that I've been a little
   conservative with comments in places.  I'm going through and rectifying some of
   this now.  I probably won't get around to really fleshing out the new
   implementation of FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES until tomorrow
   (or the following day, if I stay home tomorrow).

   Another thing:  As each IL entry is encountered during the preinit passes,
   we should output the filename and line number where it occurs.

2000-06-30  Danny Thorne

   Spoke with Dan about SAGE for a while.  We'll start working together a little
   more closely so that Dan will be prepared for my departure in August.  He needs
   to be able to pick up where I left off.  One thing we decided on is to
   implement a uniform mechanism across the existing sage_gen, sage_form routines
   for recovering from failed attempts during the preinit stage.  Currently there
   are a couple of cases (e.g. routines that return a value and routines that
   don't return a value), and there is the problem that sometimes it is actually
   okay for a sage_ routine to return a NULL value, so we cannot expect returning
   a NULL pointer to always uniquely identify the nature of the situation.  The
   best idea, all things considered, I think, is to have a global variable to
   indicate whether the current preinit task is currently successful or has
   failed.  By "preinit task" I mean a call to a sage_gen_ routine from with
   the sage_preinit_ routines .

2000-06-29  Danny Thorne

   The preinit stage doesn't core dump on the STL test code at this point, but 
   it doesn't finish initializing everything either.  And when control flows 
   to sage_process_file_scope_entities() after the preinit stage, we encounter 
   an infinite loop for some reason.  It happens because the first 
   curr_source_sequence_entry is an iek_end_of_construct upon which the call
   to sage_gen_declaration() returns immediately without advancing the source
   sequence entry.  Then sage_process_file_scope_entities() calls sage_gen_decl-
   aration() again without first advancing the source sequence entry.  So this
   goes on forever.  It would be easy to fix by just going ahead and advancing
   the source sequence entry, but the problem never happened before, and now it
   happens even if I skip the preinit stage altogether, and I feel like I should
   try to figure out what is causing it.  I haven't figured out what's causing it
   yet, though.

   Note that if I eliminate all the preinit stuff with preprocessing directive,
   then SAGE runs normally.

   NOTE:  Need to centralize the flags associated with toggling stuff related
   to the preinit stage and template instantiations.  Maybe put them in
   host_envir.h or something like that.  Currently there are flags in
   sage_gen_be.C, sage_il_to_str.C, il_to_str.h, cfe.c, etc that need to be
   edited individually in order to eliminate all preinit and template instan-
   tiation stuff during preprocessing.

   I can turn on PREINIT_IL in sage_gen_be.C and pass the -preinit_il flag to
   ROSE and still SAGE runs smoothly, but when I turn on FACILITATE_PREINIT_IN_
   EXISTING_SAGE_ROUTINES I get the infinite loop.

   Fixed the infinite loop by putting if(preinit_pass) before all the
   FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES stuff in SAGE.  There was a
   return NULL that was happening in sage_gen_class_definition() that was
   somehow causing the infinite loop when encountered by SAGE outside of the
   context of the preinit stage. 

2000-06-28  Danny Thorne

   Decided to turn TEMPLATE_INSTANTIATIONS_IN_SAGE off and see if I can get 
   the preinit stage to work that way again.  Getting another case of an 
   incomplete SgSymbol.  In sage_gen_tag_reference(), the following assert 
   is failing: assert(parentsym->get_declaration()!=NULL).

   We need to somehow make sure that the preinit stage always gives rise to either
   a complete SgSymbol or no SgSymbol at all on a given pass.

   I put code in sage_preinit_source_sequence_entity_check_types and
   sage_preinit_source_sequence_entity_check() to output a notice
   whenever there is a type symbol that doesn't have a declaration and to output
   an indication of exactly what kind of symbol it is (e.g. SgClassSymbol,
   SgFunctionSymbol, ... ), and it looks like that it is only SgClassSymbols that
   are showing up with no declaration (so far).

   Put asserts before new class symbol creations throughout sage_gen_be.C to
   assert that the class declaration passed to the constructor is not NULL, and
   taught the preinit stage how to bail on creating a SgClassSymbol if the call
   to sage_gen_class_definition() returns NULL.

   Added code to keep track of the total number of entities, total number of type
   entities, number of entities that are unintitialized and number of type entities
   that are uninitialized.  These are output after each preinit pass.

2000-06-27  Danny Thorne

   Continuing to debug the miscellaneous problems that come up when running 
   ROSE on the STL test code with TEMPLATE_INSTANTIATIONS_IN_SAGE turned on.

   It gets successfully through three passes now (until late this afternoon, it
   was failing during the third pass).  I'm at a point where I have reason to
   wonder whether all il entries that have no name (i.e. source_corresp.name==NULL)
   should have a SgDefaultSymbol or there are cases when an entry might have no
   name but deserve a specialized SgSymbol.  It comes up at the top of
   sage_preinit_type_symbol_ptr() in the following snippet:

     if( get_symbol_ptr(tp->source_corresp)!=NULL &&
         isSgDefaultSymbol(get_symbol_ptr(tp->source_corresp))==FALSE )
     {
       assert(tp->source_corresp.name!=NULL); // (1)
       if(tp->sg_type_ptr==NULL) 
          tp->sg_type_ptr = get_symbol_ptr(tp->source_corresp)->get_type();
       assert(tp->sg_type_ptr!=NULL);         // (2)
       return;
     }

   Assert (1) fails sometimes, indicating that there are il entries with a
   specialized SgSymbol (by specialized, I mean other than SgDefaultSymbol) that
   have no name.  I'm not sure how/where those SgSymbols are being created yet, but
   one case where this happens is when sage_preinit_type_symbol_ptr() is called
   recursively from case tk_typeref on under_type:

      under_type = tp->variant.typeref.type;
      if(under_type!=NULL)
         sage_preinit_type_symbol_ptr(under_type); // This call sometimes gives
                                                   // rise to the failure of
                                                   // assert (1) above.

2000-06-26  Danny Thorne

   Continued trying to fix the handling of template arguments.

   Added a field

      a_boolean output_name_returned_null;

   to

      struct an_il_to_str_output_control_block

   in il_to_str.h, and added an argument

      a_boolean return_null

   to

      gen_name_reference()

   and

      sage_gen_name_reference()

   which are the functions that octl->output_name() point
   to, where octl is of type an_il_to_str_output_control_block.
   So &(octl->output_name_returned_null) is passed as the
   boolean return_null in the call to octl->output_name()
   in order to know when subsequent calls within output_name()
   fail during the preinit stage.  This catches at least one
   case of sage_form_template_args() failing during the preinit
   stage.  This fix requires the extra field and parameter because
   of the fact that sage_gen_name_reference() does not return
   a value (and, hence, cannot return NULL as other functions can
   when an attempt fails during the preinit stage).

   This fix gave rise to many other miscellaneous problems, primarily
   associated with the problem of teaching SAGE to defer gracefully
   until a following pass in the cases that something cannot be
   completely handled in the current pass.

   I'm still in the process of tracking down and fixing all of
   these problems.

   Note that the flag FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
   toggles the inclusion of the new things I'm putting in to the
   existing SAGE routines.  It also now is used in il_to_str.h
   where an_il_to_str_output_control_block is defined.  In fact,
   il_to_str.h is included by sage_il_to_str.h which is included
   by both sage_gen_be.C and sage_il_to_str.C, so the best place
   to toggled this flag is in il_to_str.h.

2000-06-23  Danny Thorne

   Turned on TEMPLATE_INSTANTIATIONS_IN_SAGE and working on getting 
   sage_form_template_args() and peripheral routines to work.  Arranging for 
   sage_form_template_args() to return an empty list in the case that it can't 
   create a symbol for one of the arguments.  Spent some time trying to figure 
   out how to determine if an STL list is empty so I could check in the routine 
   that calls sage_form_template_args() whether formation of the arguments was 
   successful or not.  Finally realized that there is a "size()" member function.

   Put code in cases tk_class, tk_struct, tk_union, and tk_routine to handle
   arguments of templates prior to handling the class itself.  Haven't quite gotten
   this to work correctly yet.

2000-06-22  Danny Thorne

   Just needed to make a couple more tweaks, and now the preinit stage 
   successfully initializes all types in the tree for the STL test code as well 
   as for others of my test codes that I've tried.

   Now I need to arrange for the flag preinit_anything_this_pass to be handled
   correctly so that the preinit stage can have a meaningful stopping criteria
   (namely, preinit_anything_this_pass==FALSE ==> stop).

   Did that, and also built functions to traverse the tree and check for
   any il entry that doesn't have an initialized sg_symbol_ptr so that the
   stopping criteria can be verified directly at the end.

   Note that presently the STL test code will not terminate because of the presence
   of tk_arrays which I haven't implemented yet.  I'm not yet sure how to handle
   them.

   I ended up handling them by just creating a SgVariableSymbol for them.  I'm a
   nervous about creating SgVariableSymbols in some of the cases in sage_gen_type_
   symbol_ptr().  But there is no SgTypeSymbol and no other symbol that makes
   any more sense in cases like tk_array than SgVariableSymbol.

2000-06-21  Danny Thorne

   Realized that I was trying to fix sage_gen_class_definition() to handle the
   case that the calls to sage_gen_declaration() were aborted during the preinit
   stage (to handle the out-of-sync source sequence entry that resulted, that is),
   but all it needs to do is recognize the fact and return a NULL pointer at that
   point.

   Fixing this opened a flood-gate of miscellaneous other problems that I've been
   knocking off pretty easily so far.

   Added the following:

      if( get_symbol_ptr(rp->type->source_corresp)==NULL )
         sage_preinit_type_symbol_ptr(rp->type);

   to case iek_routine in sage_preinit_source_sequence_entity().

   This gave rise to more miscellaneous problems.

   Here's an example problem:

      main
      edg_main
      sage_preinit_il
      sage_preinit_file_scope_entities
      sage_preinit_source_sequence_list
      sage_preinit_source_sequence_entity
      sage_preinit_type_symbol_ptr -- tp --> type,
      sage_gen_type -- type --> type,
      sage_form_type -- type --> type,
      sage_form_type_second_part -- type --> type,
      sage_form_function_declarator -- type --> type,
      sage_gen_function_declarator_with_scope -- type --> type,
                                                 rtsp = type->variant.routine.extra_info,
                                                 param = rtsp->param_type_list,
                                                 param->type --> type,
      sage_gen_type -- type --> type,
      sage_form_type -- type --> type,
      sage_form_type_first_part -- type->variant.pointer.type --> type,
      sage_form_type_first_part -- get_symbol_ptr(type->source_corresp) == NULL.

   That is:

      get_symbol_ptr(tp->variant.routine.extra_info->param_type_list->type->variant.pointer.type->source_corresp) == NULL.

   I wrote it up in order to help trace the problem back to the
   source where I can handle it.

   Finally fixed that.  Now I'm getting another similar problem ending
   with sage_form_type_first_part passing type->variant.pointer.type
   to itself.

   I'm thinking that maybe we should handle all pointer types first.
   I think I'll try that.

   Added preinit_pointer_types_this_pass and preinit_pointer_types_done.

   I couldn't get that to work right.  I fixed the problem by just
   checking tp->variant.routine.extra_info->param_type_list->type->variant.pointer.type->source_corresp
   explicitly for now.

   Fixed several other problems.

   Experimented with putting a call to sage_preinit_type_symbol_ptr(tp->next)
   within sage_preinit_type_symbol_ptr(), but that didn't work (the recursion
   entered a cycle, somehow).  I tried putting the recursive call in both
   the front and the back.

   Note that preinit_types_done is being set to TRUE prematurely.  For instance,
   after it is TRUE we have get_symbol_ptr(rp->type->source_corresp)==NULL in
   sage_preinit_routine_symbol_ptr().

   I think I need to write a routine to traverse the IL tree and check types for
   NULL sg_symbol_ptrs before allowing preinit_types_done to be TRUE.

   Did that.  Now the code never terminates.  Nothing new is created after the
   third pass.  (That is for the STL_TEST test code.)

   Added sage_preinit_type_symbols_is_complete(),
         sage_preinit_source_sequence_list_check_types(), and
         sage_preinit_source_sequence_entry_check_types().

   These routines give any type with no name (tp->source_corresp.name==NULL) a
   SgDefaultSymbol.  If any other type is encountered that has a NULL
   sg_symbol_ptr, sage_preinit_type_symbols_is_complete() returns FALSE
   and preinit_types_done remains FALSE for another pass.

   At this point, sage_preinit_type_symbols_is_complete() never returns TRUE
   for the STL test code.

   Need to give any SgDefaultSymbols a SgTypeDefault in the case iek_type.
   I arranged for SgDefaultSymbol to have this (see ROSE/ROSETTA/symbol.C).

   Q: Should all type_kinds have a non-NULL sg_type_ptr.  That is, should there
      be a SgType corresponding to every "struct a_type" in the tree?  Note that
      in some cases the SgSymbol does not have a type member.

   In the case of routines (tk_routine), I've allowed NULL sg_type_ptrs.

2000-06-20  Danny Thorne
   Changed sage_gen_{routine,type,...}_symbol_ptr() to
   sage_preinit_{routine,type,...}_symbol_ptr() everywhere in sage_gen_be.C.
   This was an oversight in naming convention on my part at the beginning
   of development of the preinit stage.

   Began experimenting with teaching existing SAGE routines to fail gracefully
   during the preinit stage and allow the current pass to continue instead of
   tripping an assert.  I'm beginning to think that this will be the only
   viable way.  One manner of achieving this, though, would be to write a
   sage_preinit_...() routine to correspond to every sage_gen_...() routine.
   I haven't quite been driven to that extreme, yet. 

   Note that the pieces of code in the existing SAGE routines that are for the
   purpose of facilitating the preinit stage are wrapped within
   
      #define FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES 1
      #if FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES
      #endif

   The flag is set on a case-by-case basis during developement in order to 
   toggled individual pieces separately.  Eventually, if this approach works,
   the FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES should be toggled based
   on the state of the "preinti_il" run-time parameter.

   So far FACILITATE_PREINIT_IN_EXISTING_SAGE_ROUTINES sections exist in
   sage_gen_class_definition() and sage_gen_tag_reference().  These things will
   propogate throughout the code, though, probably, because whenever a
   sage_gen_() routine fails during the preinit stage without tripping an
   assert, it returns a NULL pointer; hence, any calling routines will need
   to be equipped to accomodate receiving a NULL pointer which is something
   that many of them don't currently tolerate.  A trickier problem is 
   associated with the fact that when a sage_gen_() routine terminates
   abnormally, the curr_source_sequence_ptr may not have been advanced to
   the point that the calling routine will expect.  It's hard to figure out
   what exactly should be done with the curr_source_sequence_ptr in such
   a case.

2000-06-19  Danny Thorne
   Working on order-of-preinit of entries.  For instance, need to preinit base-
   classes before preinit-ing derived classes.  Sometimes it's necessary to
   preinit nested classes before preinit-ing the parent class, and sometimes
   it's necessary to have preinit-ed the parent class in order to preinit
   something inside of it.

2000-06-16  Danny Thorne
   Need to figure out the problem I was working on at the end of
   yesterday.  Here is the call stack again, this time with an indication
   of where the offending type pointer came from.

      main
      edg_main
      sage_preinit_il
      sage_preinit_file_scope_entities
      sage_preinit_source_sequence_list
      sage_preinit_source_sequence_entity
      sage_gen_routine_symbol_ptr 
      sage_gen_routine_decl ------ if (curr_src_seq_entry_is_secondary_decl(&sec_decl))
                                      rout = ss_entry_ptr(sec_decl, a_routine_ptr),
                                   else
                                      rout = ss_entry_ptr(curr_source_sequence_entry, a_routine_ptr),
                                   scope_region_number = rout->assoc_scope,
                                   scope = il_header.region_scope_entry[scope_region_number],
                                   scope->assoc_block --> statement,
      sage_gen_statement --------- statement --> statement,
      sage_gen_block_statement --- statement->variant.block.statements --> statement,
      sage_gen_statement_list ---- statement --> statement,
      sage_gen_statement --------- statement->expr --> expr,
      sage_gen_initializer_expr -- expr --> expr,
      sage_gen_expr -------------- operand_1 = expr->variant.operation.operands,
                                   operand_1 --> node,
      sage_gen_lvalue ------------ node --> expr,
      sage_gen_expr -------------- operand_1 = expr->variant.operation.operands,
                                   rout = operand_1->variant.routine, 
                                   rout --> rout,
      sage_gen_routine_name ------ rout->declared_type --> type,
      sage_gen_type -------------- type --> type,
      sage_form_type ------------- type --> type,
      sage_form_type_first_part -- type->variant.routine.return_type --> type,
      sage_form_type ------------- type --> type,
      sage_form_type_first_part -- type->variant.pointer.type --> type,
      sage_form_type_first_part -- type->source_corresp.sg_symbol_ptr == NULL.

   I don't think it's possible to check for a case like this before calling 
   sage_gen_ routine_decl() from sage_gen_routine_symbol_ptr() in the first place.  
   There are essentially an infinite number of ways to get from sage_gen_routine_
   decl() to sage_form_type_first_part() and have this problem I think.  It depends
   entirely on what the code looks like that's being compiled.

   I see two possible solutions.  For one, we could teach the existing SAGE routines,
   like sage_form_type_first_part(), to behave differently during the preinit stage
   (see comments in 2000-06-14).  Another possibility is that we don't try to process any
   routine declarations until all type declarations have been handled.  That is, 
   we do only types during the first couple of passes and then start doing routines
   on later passes.  The latter solution is more desirable by far if it will work.
   
   Moved the loop control of sage_preinit_il() to within sage_preinit_il() and
   call sage_preinit_il() just one time from EDG_MAIN in cfe.c.  Previously, I
   was looping within cfe.c to call sage_preinit_il() multiple times.  

   Added some preinit related flags to sage_gen_be.C:

      preinit_types_this_pass -- Will be initialized to FALSE before each pass, and 
         then during that pass of the preinit stage it will be set to TRUE if any
         sg_symbol_ptr for a type is initialized.

      preinit_types_done -- Will be initialized to FALSE at file scope, and then
         after any preinit pass if preinit_types_this_pass is still FALSE this
         flag will be set to TRUE.

      preinit_anything_this_pass -- Will be initialized to FALSE at the beginning
         of each pass, and then at the end of the pass if this flag is still FALSE
         the preinit stage will end.  Anytime during the preinit pass that any
         sg_symbol_ptr is initialized, this flag will be set to TRUE.

   Probably will need quite a few more flags like that.  Probabably will need
   to handle classes that have no parents first before classes that have parents.
   Will probably want to handle primitive types before handling classes at all.  
   In each of these cases there will need to be a flag, like, say:

      preinit_primitive_types_this_pass
      preinit_primitive_types_done
      preinit_parent_classes_this_pass
      preinit_parent_classes_done

   where "parent" actually means "having no parents" in this context as opposed
   to meaning that it necessarily has children.

   The thing that worries me is what if, for instance, there are cases where 
   neither the parent class nor its children can be created independently of
   one another in some way? Well, it must be possible to always create them
   independently somehow, but maybe not with existing SAGE routines.  

2000-06-15  Danny Thorne
   Fixed the NULL curr_source_sequence_entry in tk_typeref (mentioned at the end
   of yesterday) by just creating a SgTypedefDeclaration object from scratch 
   with no SgDeclarationStatement and no SgSymbol for the parent.  When the 
   curr_source_sequence_entry is non-NULL it goes ahead and creates the 
   SgTypedefDeclaration by calling sage_gen_typedef_definition().

   Fixed several miscellaneous problems associated with what to handle on the 
   first pass and what to defer until the second pass.

   Milestone: The first pass completes successfully with ROSE/ROSE_TEST/
              STL_TEST/templates_stl.C finally.  Core dumps on the second
              pass though. 

   Having trouble getting the second pass to work on templates_stl.C.  There's a
   point at which the call stack looks like this:

      main(argc = 10, argv = 0xffbef37c)
      edg_main(argc = 29, argv = 0x4d1f08)
      sage_preinit_il()
      sage_preinit_file_scope_entities(top = CLASS)
      sage_preinit_source_sequence_list(ssep = 0x63780c)
      sage_preinit_source_sequence_entity(void_ssep = 0x63797c, ssep_kind = ',')
      sage_gen_routine_symbol_ptr(rp = 0x637930)
      sage_gen_routine_decl(suppress_specifiers = 0, ...
      sage_gen_statement(statement = 0x646980)
      sage_gen_block_statement(statement = 0x646980)
      sage_gen_statement_list(stmt_list = 0x6469d0, ...
      sage_gen_statement(statement = 0x6469d0)
      sage_gen_initializer_expr(expr = 0x646b44, type = 0x6372b8, need_parens = 0)
      sage_gen_expr(expr = 0x646b44, need_parens = 0)
      sage_gen_lvalue(node = 0x646b2c)
      sage_gen_expr(expr = 0x646b2c, need_parens = 1)
      sage_gen_routine_name(rout = 0x641204)
      sage_gen_type(type = 0x641338)
      sage_form_type(type = 0x641338, octl = 0x4baf4c, under_a_class = (nil))
      sage_form_type_first_part(type = 0x641338, ...
      sage_form_type(type = 0x6412c4, octl = 0x4baf4c, under_a_class = (nil))
      sage_form_type_first_part(type = 0x6412c4, ...
      sage_form_type_first_part(type = 0x638344, ...

   and something is missing that's needed in sage_form_type_first_part()  at
   the top (bottom of the the listing here), and I haven't yet been able to even 
   figure out what it is that needs to be checked in sage_gen_routine_symbol_ptr() 
   before calling sage_gen_routine_decl() to make sure this doesn't happen, and 
   once I figure that out I'm not sure what I'm going to do about it exactly.

   On a more positive note, the two preinit passes complete successfully and
   ROSE completes successfully when I run it on my small ROSE/ROSE_TEST/PREINIT_TEST
   test codes and my ROSE/ROSE_TEST/templates.C test code.  There's just something
   about STL that continues to thwart.

2000-06-14  Danny Thorne
   Introduced all of the remaining il_entry_kinds (there were many) into the switch
   statement in sage_preinit_source_sequence_entity().

   Fixed tk_typeref in sage_gen_type_symbol_ptr() to use sage_gen_typedef_definition()
   instead of trying to create the SgTypedefDeclaration from scratch all by itself.

   Introduced SgDefaultSymbol in ROSE/ROSETTA/symbol.C.  This took quite a bit of
   tinkering to get working.  The problem stemmed from the fact that each symbol
   is expected to have a declaration field by default.  I had to figure out how
   to turn this off.  I ended up still having to have a name field which I just
   initialized to SgdefaultName.  Of course, in symbol.c "Sg" is represented
   by $GRAMMAR_PREFIX_.

   Modified tk_class to call sage_gen_class_definition() instead of trying to
   create SgClassDeclaration by itself from scratch, but this didn't work in
   all cases.  sage_gen_class_definition() requires other stuff to be around
   that the preinit stage hasn't encountered yet, so I changed it to just
   create a watered down version of SgClassDeclaration by itself on the
   first preinit pass and then try to call sage_gen_class_definition() on the
   second pass.  That way hopefully the first pass eventually created everything
   necessary for sage_gen_class_definition() to run on the second pass.  By
   "watered down" I mean basically a SgClassDeclaration whose constructor is
   passed a NULL SgClassDefinition pointer.  This has an obvious caveat.  The
   things that are created later in the first pass may not be complete after
   the first pass and so may be insufficient for the call to sage_gen_class_
   definition() on the second pass.  The best way to handle this may be to
   make the sage_gen_ routines behave differently during the preinit stage.
   In particular, they might merely set a flag instead of failing an assert
   during the preinit stage.  I've created a global variable in sage_gen_be.C
   called preinit_pass which is an integer indicating the number of the
   current pass.  After the preinit stage is complete, this variable could be
   set to zero, and hence the SAGE routines could easily know when they are
   called from the preinit stage, e.g. with if(preinit_pass).  So we could
   have something like this:

      if(preinit_pass) { /* Set a flag. */; return; }
      else assert(get_symbol_ptr()!=NULL);

   The flag will presumably be a field or member of either an il tree node
   or a Sg object.  The problem with this is that the calling routines
   will need to be able to detect that the process has aborted.  Maybe it's
   better to try to handle this in a way that won't require so much
   intrusion into existing SAGE routines.

   Maybe the way to do this is to have several preinit passes and on the nth
   pass check each entry to see how deeply it is dependent on other stuff, and
   create it if there is nothing buried >=n deep that it needs before
   being created.  For example, when checking whether to create a SgClassSymbol
   for a_type_ptr tp, where tp->kind == tk_class, if

      tp->variant.class_struct_union.extra_info->base_classes != NULL

   then this SgClassSymbol could not be created on the first pass because
   sage_gen_class_definition() requires that the sg_symbol_ptrs for the
   base_classes be defined.

   Have similar problem when calling sage_gen_type() from sage_gen_type_symbol_ptr()
   sometimes.  Need to have tp->source_corresp.parent.class_type handled first.

   And in sage_gen_variable_symbol_ptr(), need to handle
   vp->type->variant.pointer.type first if it exists.

   Began trying to implement some things related to the idea mentioned
   above involving several passes where management is restricted to the new
   preinit routines as opposed to involving the existing SAGE routines. Overcame
   several obstacles until finally getting stuck in tk_typeref in sage_gen_type_
   symbol_ptr() where there is an occasion when tp->source_corresp.source_sequence_entry
   is NULL which is causing the call to sage_gen_typedef_definition() to fail
   since I'm setting curr_source_sequence_entry = tp->source_corresp.source_sequence_entry
   and sage_gen_typedef_definition() uses curr_source_sequence_entry.

2000-06-13  Danny Thorne
   Modified sage_gen_routine_symbol_ptr() to call sage_gen_routine_decl() 
   instead of trying to create the SgFunctionDeclaration from scratch by itself.  
   This requires making sure that the curr_source_sequence_entry is set to the 
   source sequence entry for the a_routine_ptr passed to 
   sage_gen_routine_symbol_ptr().

   Fixed case iek_block in sage_preinit_source_sequence_entity().  Had 
   previously not realized that struct a_block has an assoc_scope that is of 
   type a_scope_ptr (cf. 2000-06-02).  That confusion stems from the fact that 
   struct a_routine has an assoc_scope that is an integer (albeit typedef-ed to 
   a_memory_region_number).  At any rate, I haven't seen this case occur yet, 
   and I'm not sure under what circumstances it will occur.  I tried putting an 
   explicit block in the middle of my main() code, but that didn't give rise to 
   an iek_block entry.

2000-06-12  Danny Thorne
   Noticed that chars are stored as ints in EDG.

   Worked on fleshing out sage_gen_type_symbol_ptr().  Wrote code for 
   tk_routine, tk_class, tk_struct, and tk_union.

2000-06-09  Danny Thorne
   Created type_kind_names[] and statement_kind_tag_names[] arrays in il_def.h.
   There was already one of these for an_il_entry_kind.  I wish there were 
   already one for all of the enums in il_def.h.

2000-06-08  Danny Thorne
   Have working code in

      sage_gen_type_symbol_ptr()

   and

      sage_gen_variable_symbol_ptr()

   for creating SgVariableSymbol and SgTypedefSymbol objects, as well as
   SgType objects.  These are used to initialize the sg_symbol_ptr and
   sg_type_ptr fields in the IL tree.  Note that this code currently only 
   implements typedef-ed types that come from tk_integers, tk_floats and
   tk_pointers.  

   NOTE:  The assoc_info field in source_corresp can be dereferenced like this,
   for instance:

     *(a_symbol_ptr)vp->source_corresp.assoc_info

   where the cast is necessary.  Anyway, this has quite a bit of information in
   it.  It might be worth keeping in mind.  It occurs to me to wonder if it 
   should be sufficient to have SgSymbol constructors take just one of these: 
   a_symbol_ptr. A question related to that: How to use the decl_seq field of 
   "struct a_symbol" to access the declaration itself? decl_seq is supposed to 
   uniquely identify the declaration associated with the current symbol (in the 
   current scope).  At any rate, I haven't used source_corresp.assoc_info in
   ROSE/SAGE yet, but I wanted to mention it as something that might be useful
   in the future.

2000-06-06  Danny Thorne
   Added 

      sage_preinit_source_sequence_list() 

   to be called from 

      sage_preinit_file_scope_entities() 

   and which will be able to call itself in the case of src_seq_sublists.  It 
   may also be called for source sequence lists associated with file scopes and 
   block scopes instead of sage_preinit_{function,block}_scope_entities(),
   which is what was being called previously and which more-or-less duplicates the
   work being done in sage_preinit_source_sequence_list() now.  This is pending
   any discoveries that suggest it's more desirable to have separate functions
   to handle function and block scope source sequence lists.

   Fixed a major blunder in 

      sage_gen_type_symbol_ptr()

   that was associated with the particular enum being used to index the cases
   in the switch statement.  Previously, an_il_entry_kind was being used, but  
   it was supposed to use a_type_kind.  This makes a big difference, of course.

2000-06-02  Danny Thorne
   Added cases for iek_block and iek_statement to 

      sage_preinit_source_sequence_entity() 

   and added functions

      sage_preinit_function_scope_entities() 
      sage_preinit_block_scope_entities()

   to compliment sage_preinit_file_scope_entities().  These are still under
   developement, however. (And I'm not sure if the one for block scopes is
   really necessary, because it turns out that there actually is not a scope
   associated with blocks -- that is, struct a_block does not contain an
   assoc_scope field. [DT] 6/16/2000 -- No, that's wrong.  See 2000-06-13.)

   The effect of this presently is that the preinit stage now prints out to
   the screen the stuff that is within the scope of functions as opposed to
   just the stuff that is at file scope.  This distinction wasn't sufficiently
   discussed in previous entries to this ChangeLog, by the way.  I was
   under the impression that the source sequence list traversed through
   all scopes, which is not the case.  Access to the source sequence list for
   a scope associated with a function for instance, given a_routine_ptr rp,
   could be achieved as follows:

   // Grab the scope associated with the function.
      a_scope_ptr sp = il_header.region_scope_entry[rp->assoc_scope];
   // Get the source sequence from the scope.
      a_source_sequence_entry ssep = sp->source_sequence_list;

   Note that ROSE/ROSE_TEST/PREINIT_TEST has been added to the repository and
   includes small codes that are convenient for trouble-shooting the preinit
   stage while it is being developed.

2000-05-31  Danny Thorne
   Tried to arrange to call disp_file_scope_il() from sage_gen_be.C, but wasn't
   successful.  It's being declared as an extern in sage_gen_be.C, and it's
   defined in il_display.c.  I had to add il_display.c to the Makefile, first
   of all, and I verified after that (using ar -tv and nm) that libedg.a did
   in fact receive a non-empty il_display.o and that il_display.o contains a 
   definition of disp_file_scope_il(), but for some reason I always get an
   undefined symbol error for disp_file_scope_il() at link-time.  However, I
   was able to call disp_file_scope_il() from cfe.c just before the call to
   the backend, and perhaps this will be sufficient, although the output from
   disp_file_scope_il() is not quite as useful as I had hoped.

   The motivation for using disp_file_scope_il() is to facilitate figuring
   out how to find instances of primitive types for which we can create SAGE
   objects easily.  The only way I've found of locating a refernce to "i"
   in the small code below (2000-05-29) is through the "scope" structure,
   which is of type "struct a_scope" (see ROSE/EDG/src/il_def.h).  In general,
   the "scope" structure offers more convenient access to stuff than the
   source sequence does.  That might be something to keep in mind. 

   Added a ROSE command line flag, -preinit_il, for the purpose of turning
   on the preinit stage.  The default now will be to *not* do the preinit,
   and the -preinit_il flag will need to be passed in order to enable the
   call to the preinit routine.  This will make it convenient in the 
   context of the CVS repository.  I will be able to leave the preinit
   functionality in ROSE when I do a check in, but users won't encounter
   it unless they explicitly ask for it on the command line.  Of course,
   when the preinit stage works the way we want it to, then maybe it will
   be better to have the preinit stage be *on* by default and offer to 
   the user functionality for turning it off explicitly if they have reason
   to think it is undesirable in a particular case.  NOTE:  The preinit
   stage probably often *will* be somewhat undesirable considering that
   by-and-large ROSE works fine as is.  So far the only code that has
   broken it is STL.  Support for STL is the primary motivation for
   the preinit stage and subsequent special handling of templates in
   SAGE and ROSE.

2000-05-29  Danny Thorne
   Created ROSE/ROSE_TEST/PREINIT_TEST/test01.C which looks like this:
  
      main() { int i; i = 1; return 0; }

   in order to trouble-shoot the preinit procedure more conveniently.
   In particular, we are considering the idea of passing through the source
   sequence first to initialize SAGE objects associated with just primitive
   types and build from there in an iterative manner until we are able to
   build SgSymbol objects.  That is as opposed to trying to build SgSymbol 
   objects by recursively building everything needed for a each individual
   SgSymbol object, one SgSymbol object at a time. (cf. 2000-05-26)

2000-05-26  Danny Thorne
   sage_preinit_file_scope_entities() now handles secondary source sequence
   declarations and end-of-construct entries.  It also prints out the names
   of each entry in addition to the "kind" of each entry.  I've started
   attempting to build SgSymbol objects in order to initialize sg_symbol_ptrs
   but it's not turning out to be straight-forward.  Each SgSymbol object
   constructor requires some other SAGE object which in turn requires other
   SAGE objects, etcetera.  It's hard to know at what point to terminate
   this recursion, and it's hard to know how to build all the necessary
   SAGE objects in this recursion at all.  This is more or less the problem
   that we were hoping to avoid by the preinit strategy.  The means by
   which we expect to be able to avoid this problem is multiple passes
   through the source sequence.  Maybe we need to begin this strategy from
   the perspective of other more easily constructed SAGE objects (like those
   associated with primitive types, for instance) instead of from the
   perspective of SgSymbols themselves, in spite of the fact that it is the
   SgSymbols that we really want in the end.  Altering our perspective in
   this way should make it easier to take advantage of multiple passes of
   the source sequence and avoid convoluted recursion.  At each successive
   pass we should be equiped to easily create some slightly higher level
   objects from other objects that exists from previous passes.  Finally,
   on the last pass, we should have everything necessary to create SgSymbol
   objects for the highest level entities from pre-existing objects.

2000-05-22  Danny Thorne
   sage_preinit_file_scope_entities() now prints out the name of each entry
   (for routines and types).  Working on a general solution for handling
   the seconary source sequence declarations and end of construct entries.
   When this is in place, it will just be a matter of building sg_symbol_ptrs
   and such instead of printing to the screen.

2000-05-19  Danny Thorne
   Began creating sage_preinit_il.C containing the function sage_preinit_il() 
   which is called from EDG_MAIN() in cfe.c immediately prior to the call
   to sage_back_end().  The purpose of sage_preinit_il() is to make one or
   more passes through the source sequence and initialize as many as possible
   of the sg_symbol_ptr, sg_type_ptr, and any other SAGE item existing in
   the IL tree.  This is intended to greatly facilitate the integrity of
   the SAGE back end which often depends on these pointers being non-NULL
   but which sometimes isn't sure how to generate them on the fly.

   Later:  Decided just to create sage_preinit_il() within sage_gen_be.C
   directly.  Also created init_sage_preinit_il() and 
   sage_preinit_file_scope_entities().  Currently it just passes through
   the source sequence list and prints out the kind of each entry. 

2000-05-18  Danny Thorne
   Have been working on handling templates with DQ:  

     * Have added TemplateInstantiationSymbol, TemplateInstantiationDecl, 
       TemplateInstantiationDefn, and TemplateInstantiationType elements to 
       the grammar (see ROSE/ROSETTA and ROSE/ROSETTA/Grammar).

     * Added sage_form_template_args() to sage_il_to_str.C and am calling this
       function from sage_gen_unqualified_name() which is in sage_gen_be.C.

     * We've done a lot of tinkering in the way of rectifying the spurious
       NULL sg_symbol_ptr fields in the source correspondence structure.  One
       place in particular that this is manifest is sage_gen_tag_reference().
       It's not working yet, though, and we've tentatively decided on a totally
       different approach now:  Make one or more passes through the source
       sequence to initialize sg_symbol_ptr (and, potentially, sg_type_ptr) as
       an intermediate step between the EDG front end and the SAGE back end.

     * Note that the stuff that's under construction related to the handling
       of the new TemplateInstantiation terminals in sage_gen_be.C and 
       sage_il_to_str.C can be toggled with the TEMPLATE_INSTANTIATIONS_IN_SAGE
       flag.

2000-04-21  Danny Thorne
   Changed the default template instantiation mode in cmd_line.c to tim_all.
   This obviates the fix mentioned at the end of 2000-03-17.

2000-04-10  Danny Thorne
   Added isBinaryArithmaticOperator() and isBinaryInequalityOperator() to 
   rose.h/modified_sage.h.  Now can handle overloaded operator{+,-,*,/,+=,-=,*=,/=,<,>,<=,>=,!=},
   in addition to the ones that could be handled before: operator{=,(),[],!}.  I'm not
   sure about operator{++,--,<<,>>} -- I'll have to test those later.  I think they are
   implemented already. 

2000-04-06  Danny Thorne
   Fixed the unparser to unparse the overloaded == operator.  Previously
   it would unparse something like (x==y) as (x==)(y) in the case that x and y were not
   built in types, i.e. they were istantiations of classes with an overloaded == operator.
   To facilitate this, I added isBinaryEqualityOperator() to rose.h/modified_sage.h.
   Now the unparser outputs (x==y) correctly.  NOTE:  This is a special case of a more
   general problem.  The same fix needs to be implemented for operator<, operator>=, etc.
   Or, perhaps there is a general modification that can be made to handle all these
   cases instead of having to handle them each separately.

2000-04-05  Danny Thorne
   Put some code in place of assert(sym) in sage_gen_routine_name() in
   sage_gen_be.C.  In particular, I put the following: 

                 SgFunctionDeclaration *funcdecl =
                    new SgFunctionDeclaration(fi(rout->source_corresp), rname, sageType);
                 sym = new SgFunctionSymbol(funcdecl);
                 set_symbol_ptr(rout->source_corresp, sym);
                 insert_symbol_into_current_scope(rname, rout->source_corresp);
                 result = new SgFunctionRefExp(fi(rout), (a_SgFunctionSymbol_ptr) sym);

   to create a simple SgFunctionSymbol.  This is in an else clause that is rarely
   encountered, and in fact it should never be encountered.  What I've done here is
   just a temporary fix.  The better fix is to make sure that the source correspondence 
   for every object in the IL tree has a non-null sg_symbol_ptr.  Then the call to
   get_symbol_ptr(rout->source_corresp) earlier in sage_gen_routine_name() will never
   return NULL in the first place. See the comment in get_symbol_ptr() which is
   in sage_gen_be.h.

2000-03-30  Danny Thorne
   Fixed the unparser to unparse the overloaded [] operator in the
   desired manner.  Required working from the level of unparseFuncCall().  
   See the documentation in the source code.  NOTE:  This obviates the
   fix mentioned in 2000-03-21.

2000-03-21  Danny Thorne
   Changed unparseMFuncRef() to unparse .operator[] in the case of the
   overloaded [] operator.  Previously it would just unparse the brackets themselves.  Hence,
   object[index] would unparse as object[](index), which doesn't compile.  Now object[index] 
   unparses as object.operator[](index) which *does* compile. However, this is not the preferred
   solution really.  We would like the unparsed code to look the same as the original.  That
   fix will take more time, though, and I'm going to save it for later.

2000-03-17  Danny Thorne
   Finished extending the unparser to unparse files that are #included from
   the main source file.  Currently it is designed to unparse only files that are in the local
   directory.  It prefixes the unparsed files with "rose_", and it introduces this prefix into
   the #includes within the unparsed files.  

   For example:  Suppose templates_main.C includes templates_def.h which in turn includes
   templates_def.C.  The unparser unparses rose_templates_main.C, rose_templates_def.h, and
   rose_templates_def.C and modifies the #includes respectively.  If, say, iostream.h were
   included from templates_main.C then the unparser will just include it directly in
   rose_templates_main.C with no prefix and will not unparse a file called rose_iostream.h.

   Details:  Detail the additional objects and logic that were introduced in order to facilitate 
   this feature.

   Remaining issues:  Things like the fact that the file info object is sometimes NULL.  Might
   also discuss the potentially desirable flexibililty of this feature that isn't yet
   implemented like variable prefixes and variable paths to files considered for unparsing.
   3/20/2000 -- Another thing is the apparent need for a modification in should_be_instantiated() 
   within EDG/src/templates.c related to the instantiation_mode flag which we would like to be set
   to tim_all instead of tim_none. (3/21/2000 -- I did this later yesterday, but the issue
   may not be entirely resolved.  It will need to be tested.) (cf. 2000-04-21.)

2000-03-13  Danny Thorne
   Bug Fix: The %su and %sd format specifiers in count_digits() within the
   file unparser.C were causing a core dump.  They have been changed to %hu and %hd, respectively.

2000-03-02  Danny Thorne
   Bug Fix:  A mishandling of the attributes flag in SgDeclarationStatement
   object.  The attributes flag for SgDeclarationStatements was getting clobbered in member functions 
   that occur immediately after an access specifier.  This was caused by a misguided call to the 
   set_decl_attributes() member function of SgDeclarationStatements.  The proper call, which is
   now in place, is to setBit().  NOTE: Remarked the set_decl_attributes() member function out of 
   the SgDeclarationStatments class as a preventative measure.

2000-02-17  Danny Thorne
   Command line switches between backends (EDG and SAGE backends)

-------------------------------------------------------------------------------------------------------------	
1999-02-28  Dan Quinlan
 * Added autoconf and automake to ROSE
1999-06-21  Dan Quinlan
 * Added command line options to ROSE -help -version -o -new_unparser (and a few others)
 * Fixed Unparser to handle scopes (surrounding with "{" and "}")
 * Fixed some parts of multidimensional support (1D working not
   all multidimensional support present).

-------------------------------------------------------------------------------------------------------------	
Changes_from_Sage2.txt:

This is a Change file describing the changes in SAGE3 from SAGE2.

   1) Unparser
      The unparser has been rewritten using parts of the SAGE2 unparser) to provide
      numerous options controling the output C++ code that is generate.  The most 
      obvious feature is that the output of the new unparser nearly matches that of its
      input.  Features of the new upnarser include:
      a) User comments
         All user comments are included from the original input code in the generated output C++ code.

      b) Preprocessor control flow
      c) Pragmas
         Pragmas are reproduced in the unparsed output.  They are also seen within the 
         new SAGE3 program tree (differently than in SAGE2))
      d) #Line xxx
         The preprocessor "#line xxx" are provided optionally
         to permit the user to veiw the original source code
         when viewing source code within the debugger.
      e) A dozen other options are include (more about that in 
         future documentation).

   2) New terminals built as part of the SAGE 3 program tree
      a) SgPragmaStatements
         Unbound pragmas are supported and given a representation as a SgStatment within the SAGE 3 program tree.
         Sg_File_Info objects are built for these statements that correctly record there location in the source code.

   3) Features added:
      a) Full STL support (previous version of SAGE had a partially
implements (or not working) option of using STL.  STL is now required
in the new version and the older modified STL source has been removed
to simplify the design of the newer version of SAGE.

      b) All grammars implemented using the grammer generator
(Rosetta) place class declarations into a single header file and all
source code for the class member function definitions are placed into
a single source file.  The reasoning behind separating source code and
headers into separate files is to provide for improved maintance
within a programming project.  Since the source code is generated
automatically we require no simplified maintance of the generated
source; and precisely the opposant, wish to discourage modification of
the generate source code.  To complicate matter, we expect to generate
many grammars and so keeping each grammas implementation to just two
files (a header file and a source file) greatly simplifies this.
Further the order of inclusion of headers within SAGE 2 seemed overly
complex (since there were many header files and because varying
amounts of source code were specified within the class declarations).

      c) The grammar generator now builds all class declarations
without any member function definitions, all member function
definitions are placed in the source code file.

      d) As a rule the grammar generator (Rosetta) builds all data
members as pointers to classes (e.g. 
SgExpressionRoot* p_expression_root;
instead of
SgExpressionRoot p_expression_root;)

This avoids the full declaration of a class before the class is
referenced (or included) within another class (as a data member).  We
feel this improves the organization and breaks the order of generation
of the resulting classes generated.

   4) Features remaining to add:
      a) Template Support

      b) Multiple file support

      c) 

   5) Bugs Fixed
      a) SAGE 2 sets parent statements and parent expression within all statement and expression objects.
         the new version makes this more general (so that the resulting graph has every node with a valid
         pointer to its parent).  The case of the SgExpressionRoot is more complex and the new version of 
         SAGE fixes a bug that set the parent of the statement containing a SgExpressionRoot object incorrectly.
         The fix is representing within the initialize_root member function.

      b) Memory handled in sage_gen_be.C in sage_gen_templates mixed new/delete with malloc/free.





	
