Changes in src/main.cc [59c8dff:37b3151]
- File:
-
- 1 edited
-
src/main.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r59c8dff r37b3151 82 82 #include "Validate/ReturnCheck.hpp" // for checkReturnStatements 83 83 #include "Validate/VerifyCtorDtorAssign.hpp" // for verifyCtorDtorAssign 84 #include "Validate/ReplacePseudoFunc.hpp"85 84 #include "Virtual/ExpandCasts.h" // for expandCasts 86 85 #include "Virtual/VirtualDtor.hpp" // for implementVirtDtors … … 288 287 assertf( extras, "cannot open extras.cf\n" ); 289 288 parse( extras, ast::Linkage::BuiltinC ); 289 290 290 if ( ! libcfap ) { 291 291 // read the prelude in, if not generating the cfa library … … 322 322 PASS( "Forall Pointer Decay", Validate::decayForallPointers, transUnit ); 323 323 PASS( "Fix Qualified Types", Validate::fixQualifiedTypes, transUnit ); 324 325 324 PASS( "Eliminate Typedef", Validate::eliminateTypedef, transUnit ); 326 325 PASS( "Hoist Struct", Validate::hoistStruct, transUnit ); … … 382 381 PASS( "Resolve", ResolvExpr::resolve, transUnit ); 383 382 DUMP( exprp, std::move( transUnit ) ); 384 PASS( "Replace Pseudo Func", Validate::replacePseudoFunc, transUnit );385 383 386 384 PASS( "Fix Init", InitTweak::fix, transUnit, buildingLibrary() );
Note:
See TracChangeset
for help on using the changeset viewer.