Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r166793b r307a732  
    1111// Created On       : Fri May 15 23:12:02 2015
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Wed Jun 28 21:56:47 2017
    14 // Update Count     : 440
     13// Last Modified On : Thu Jun 29 12:46:50 2017
     14// Update Count     : 441
    1515//
    1616
     
    3939#include "CodeTools/TrackLoc.h"
    4040#include "ControlStruct/Mutate.h"
     41#include "ControlStruct/ExceptTranslate.h"
    4142#include "SymTab/Validate.h"
    4243#include "ResolvExpr/AlternativePrinter.h"
     
    290291                Tuples::expandUniqueExpr( translationUnit );
    291292
     293                OPTPRINT( "translateEHM" );
     294                ControlStruct::translateEHM( translationUnit );
     295
    292296                OPTPRINT( "convertSpecializations" ) // needs to happen before tuple types are expanded
    293297                GenPoly::convertSpecializations( translationUnit );
     
    481485                        break;
    482486                  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
    484492                  default:
    485493                        abort();
Note: See TracChangeset for help on using the changeset viewer.