Changes in src/main.cc [307a732:166793b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r307a732 r166793b 11 11 // Created On : Fri May 15 23:12:02 2015 12 12 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Thu Jun 29 12:46:50201714 // Update Count : 44 113 // Last Modified On : Wed Jun 28 21:56:47 2017 14 // Update Count : 440 15 15 // 16 16 … … 39 39 #include "CodeTools/TrackLoc.h" 40 40 #include "ControlStruct/Mutate.h" 41 #include "ControlStruct/ExceptTranslate.h"42 41 #include "SymTab/Validate.h" 43 42 #include "ResolvExpr/AlternativePrinter.h" … … 291 290 Tuples::expandUniqueExpr( translationUnit ); 292 291 293 OPTPRINT( "translateEHM" );294 ControlStruct::translateEHM( translationUnit );295 296 292 OPTPRINT( "convertSpecializations" ) // needs to happen before tuple types are expanded 297 293 GenPoly::convertSpecializations( translationUnit ); … … 485 481 break; 486 482 case '?': 487 if ( optopt ) { // short option ? 488 assertf( false, "Unknown option: -%c\n", (char)optopt ); 489 } else { 490 assertf( false, "Unknown option: %s\n", argv[optind - 1] ); 491 } // if 483 assertf( false, "Unknown option: '%c'\n", (char)optopt ); 492 484 default: 493 485 abort();
Note:
See TracChangeset
for help on using the changeset viewer.