Changes in src/ControlStruct/MLEMutator.cc [6180274:3b0bc16]
- File:
-
- 1 edited
-
src/ControlStruct/MLEMutator.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.cc
r6180274 r3b0bc16 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Feb 2 20:18:57202213 // Update Count : 22 712 // Last Modified On : Tue Feb 1 09:26:28 2022 13 // Update Count : 225 14 14 // 15 15 … … 136 136 } 137 137 } 138 assertf( false, "C FA internal error: could not find label '%s' on statement %s",138 assertf( false, "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() ), 398 "CFA internal error: control structure enclosing a case clause must be a switch, but is: %s", 399 toCString( enclosingControlStructures.back().get_controlStructure() ) ); 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() ) ); 400 398 if ( caseStmt->isDefault() ) { 401 399 if ( enclosingControlStructures.back().isFallDefaultUsed() ) {
Note:
See TracChangeset
for help on using the changeset viewer.