Changeset 40522 in webkit for trunk/JavaScriptCore/wrec/WRECGenerator.cpp
- Timestamp:
- Feb 2, 2009, 10:08:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wrec/WRECGenerator.cpp
r39371 r40522 364 364 generateCharacterClassInvertedRange(failures, matchDest, ranges, which, matchIndex, matches, matchCount); 365 365 366 do{366 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) { 367 367 matchDest.append(je32(character, Imm32((unsigned short)matches[*matchIndex]))); 368 368 ++*matchIndex; 369 } while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo));369 } 370 370 failures.append(jump()); 371 371
Note:
See TracChangeset
for help on using the changeset viewer.