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