Changeset b21c77a for src/main.cc
- Timestamp:
- Jun 29, 2018, 4:14:15 PM (7 years ago)
- Branches:
- new-env
- Children:
- 184557e
- Parents:
- 97397a26 (diff), 28f3a19 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r97397a26 rb21c77a 11 11 // Created On : Fri May 15 23:12:02 2015 12 12 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Mon May 7 14:35:57 201814 // Update Count : 49 213 // Last Modified On : Wed Jun 6 15:51:47 2018 14 // Update Count : 498 15 15 // 16 16 … … 160 160 << "." << endl; 161 161 backtrace( 2 ); // skip first 2 stack frames 162 exit( EXIT_FAILURE ); 162 //_exit( EXIT_FAILURE ); 163 abort(); 163 164 } // sigSegvBusHandler 164 165 … … 261 262 } // if 262 263 263 PASS( " mutate", ControlStruct::mutate( translationUnit ) );264 PASS( "fixLabels", ControlStruct::fixLabels( translationUnit ) ); 264 265 PASS( "fixNames", CodeGen::fixNames( translationUnit ) ); 265 266 PASS( "genInit", InitTweak::genInit( translationUnit ) ); … … 571 572 yyin = input; 572 573 yylineno = 1; 573 typedefTable.enterScope();574 574 int parseStatus = yyparse(); 575 575
Note:
See TracChangeset
for help on using the changeset viewer.