- File:
-
- 1 edited
-
src/ControlStruct/MultiLevelExit.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MultiLevelExit.cpp
r3b0bc16 r6180274 10 10 // Created On : Mon Nov 1 13:48:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Feb 1 18:48:47202213 // Update Count : 2912 // Last Modified On : Wed Feb 2 20:19:24 2022 13 // Update Count : 30 14 14 // 15 15 … … 206 206 } 207 207 } 208 assertf( false, "C ould not find label '%s' on statement %s",208 assertf( false, "CFA internal error: could not find label '%s' on statement %s", 209 209 originalTarget.name.c_str(), toString( stmt ).c_str() ); 210 210 } … … 406 406 Entry & entry = enclosing_control_structures.back(); 407 407 assertf( dynamic_cast< const SwitchStmt * >( entry.stmt ), 408 "C ontrol 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", 409 409 toString( entry.stmt ).c_str() ); 410 410 if ( mutStmt->isDefault() ) {
Note:
See TracChangeset
for help on using the changeset viewer.