Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/MultiLevelExit.cpp

    r3b0bc16 r6180274  
    1010// Created On       : Mon Nov  1 13:48:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Feb  1 18:48:47 2022
    13 // Update Count     : 29
     12// Last Modified On : Wed Feb  2 20:19:24 2022
     13// Update Count     : 30
    1414//
    1515
     
    206206                }
    207207        }
    208         assertf( false, "Could not find label '%s' on statement %s",
     208        assertf( false, "CFA internal error: could not find label '%s' on statement %s",
    209209                         originalTarget.name.c_str(), toString( stmt ).c_str() );
    210210}
     
    406406        Entry & entry = enclosing_control_structures.back();
    407407        assertf( dynamic_cast< const SwitchStmt * >( entry.stmt ),
    408                          "Control structure enclosing a case clause must be a switch, but is: %s",
     408                         "CFA internal error: control structure enclosing a case clause must be a switch, but is: %s",
    409409                         toString( entry.stmt ).c_str() );
    410410        if ( mutStmt->isDefault() ) {
Note: See TracChangeset for help on using the changeset viewer.