Changeset 27847 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 16, 2007, 2:49:40 AM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r27846 r27847 1 2007-11-16 Alexey Proskuryakov <[email protected]> 2 3 Fix Windows debug build. 4 Rubber-stamped by Eric 5 6 * pcre/pcre_exec.cpp: (match): Removed ASSERT_NOT_REACHED assertions that were making MSVC 7 complain about unreachable code. 8 1 9 2007-11-15 Mark Rowe <[email protected]> 2 10 -
trunk/JavaScriptCore/pcre/pcre_exec.cpp
r27830 r27847 930 930 stack.currentFrame->eptr += stack.currentFrame->length; 931 931 } 932 ASSERT_NOT_REACHED();932 /* Control never reaches here */ 933 933 } 934 934 … … 950 950 RRETURN_NO_MATCH; 951 951 } 952 ASSERT_NOT_REACHED();952 /* Control never reaches here */ 953 953 954 954 /* Match a bit-mapped character class, possibly repeatedly. This op code is … … 1039 1039 } 1040 1040 } 1041 ASSERT_NOT_REACHED();1041 /* Control never reaches here */ 1042 1042 } 1043 1043 /* If maximizing, find the longest possible run, then work backwards. */ … … 1070 1070 RRETURN; 1071 1071 } 1072 ASSERT_NOT_REACHED();1072 /* Control never reaches here */ 1073 1073 1074 1074 /* Match an extended character class. This opcode is encountered only … … 1138 1138 RRETURN; 1139 1139 } 1140 ASSERT_NOT_REACHED();1140 /* Control never reaches here */ 1141 1141 } 1142 1142 … … 1165 1165 } 1166 1166 1167 ASSERT_NOT_REACHED();1167 /* Control never reaches here */ 1168 1168 1169 1169 /* Match a single character, casefully */ … … 1309 1309 ++stack.currentFrame->eptr; 1310 1310 } 1311 ASSERT_NOT_REACHED();1311 /* Control never reaches here */ 1312 1312 } else { 1313 1313 stack.currentFrame->pp = stack.currentFrame->eptr; … … 1327 1327 RRETURN_NO_MATCH; 1328 1328 } 1329 ASSERT_NOT_REACHED();1329 /* Control never reaches here */ 1330 1330 } else { 1331 1331 /* No case on surrogate pairs, so no need to bother with "othercase". */ … … 1355 1355 stack.currentFrame->eptr += 2; 1356 1356 } 1357 ASSERT_NOT_REACHED();1357 /* Control never reaches here */ 1358 1358 } else { 1359 1359 stack.currentFrame->pp = stack.currentFrame->eptr; … … 1375 1375 RRETURN_NO_MATCH; 1376 1376 } 1377 ASSERT_NOT_REACHED();1378 } 1379 ASSERT_NOT_REACHED();1377 /* Control never reaches here */ 1378 } 1379 /* Control never reaches here */ 1380 1380 1381 1381 /* Match a negated single one-byte character. The character we are … … 1480 1480 RRETURN; 1481 1481 } 1482 ASSERT_NOT_REACHED();1482 /* Control never reaches here */ 1483 1483 } 1484 1484 … … 1513 1513 RRETURN; 1514 1514 } 1515 ASSERT_NOT_REACHED();1515 /* Control never reaches here */ 1516 1516 } 1517 1517 … … 1541 1541 RRETURN; 1542 1542 } 1543 ASSERT_NOT_REACHED();1543 /* Control never reaches here */ 1544 1544 } 1545 1545 … … 1573 1573 } 1574 1574 } 1575 ASSERT_NOT_REACHED();1575 /* Control never reaches here */ 1576 1576 1577 1577 /* Match a single character type repeatedly; several different opcodes … … 1753 1753 } 1754 1754 } 1755 ASSERT_NOT_REACHED();1755 /* Control never reaches here */ 1756 1756 } 1757 1757 … … 1883 1883 RRETURN; 1884 1884 } 1885 ASSERT_NOT_REACHED();1885 /* Control never reaches here */ 1886 1886 1887 1887 BEGIN_OPCODE(CRMINPLUS):
Note:
See TracChangeset
for help on using the changeset viewer.