Changeset 6180274 for src/ControlStruct
- Timestamp:
- Feb 2, 2022, 9:25:37 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 9dc08363
- Parents:
- 4e7171f
- Location:
- src/ControlStruct
- Files:
-
- 2 edited
-
MLEMutator.cc (modified) (3 diffs)
-
MultiLevelExit.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.cc
r4e7171f r6180274 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Feb 1 09:26:28202213 // Update Count : 22 512 // Last Modified On : Wed Feb 2 20:18:57 2022 13 // Update Count : 227 14 14 // 15 15 … … 136 136 } 137 137 } 138 assertf( false, "C ould not find label '%s' on statement %s",138 assertf( false, "CFA internal error: could not find label '%s' on statement %s", 139 139 originalTarget.get_name().c_str(), toString( stmt ).c_str() ); 140 140 } … … 395 395 } 396 396 assert( ! enclosingControlStructures.empty() ); 397 assertf( dynamic_cast<SwitchStmt *>( enclosingControlStructures.back().get_controlStructure() ), "Control structure enclosing a case clause must be a switch, but is: %s", toCString( enclosingControlStructures.back().get_controlStructure() ) ); 397 assertf( dynamic_cast<SwitchStmt *>( enclosingControlStructures.back().get_controlStructure() ), 398 "CFA internal error: control structure enclosing a case clause must be a switch, but is: %s", 399 toCString( enclosingControlStructures.back().get_controlStructure() ) ); 398 400 if ( caseStmt->isDefault() ) { 399 401 if ( enclosingControlStructures.back().isFallDefaultUsed() ) { -
src/ControlStruct/MultiLevelExit.cpp
r4e7171f 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.