Changeset 112460 in webkit for trunk/Source/JavaScriptCore/yarr
- Timestamp:
- Mar 28, 2012, 3:43:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/yarr/YarrJIT.cpp
r112454 r112460 329 329 { 330 330 ASSERT(subpattern); 331 ASSERT(compileMode == IncludeSubpatterns);331 // FIXME: should be able to ASSERT(compileMode == IncludeSubpatterns), but then this function is conditionally NORETURN. :-( 332 332 store32(reg, Address(output, (subpattern << 1) * sizeof(int))); 333 333 } … … 335 335 { 336 336 ASSERT(subpattern); 337 ASSERT(compileMode == IncludeSubpatterns);337 // FIXME: should be able to ASSERT(compileMode == IncludeSubpatterns), but then this function is conditionally NORETURN. :-( 338 338 store32(reg, Address(output, ((subpattern << 1) + 1) * sizeof(int))); 339 339 } … … 341 341 { 342 342 ASSERT(subpattern); 343 ASSERT(compileMode == IncludeSubpatterns);343 // FIXME: should be able to ASSERT(compileMode == IncludeSubpatterns), but then this function is conditionally NORETURN. :-( 344 344 store32(TrustedImm32(-1), Address(output, (subpattern << 1) * sizeof(int))); 345 345 }
Note:
See TracChangeset
for help on using the changeset viewer.