Changeset 38641 in webkit for trunk/JavaScriptCore/wrec/WREC.cpp
- Timestamp:
- Nov 20, 2008, 4:23:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wrec/WREC.cpp
r38621 r38641 50 50 static const int outputParameter = 16; 51 51 #endif 52 52 53 53 CompiledRegExp compileRegExp(Interpreter* interpreter, const UString& pattern, unsigned* numSubpatterns_ptr, const char** error_ptr, bool ignoreCase, bool multiline) 54 54 { … … 99 99 100 100 // (3) Failure: 101 // All top-level failures link to here. 102 Generator::JmpDst failure = __ label(); 103 for (unsigned i = 0; i < failures.size(); ++i) 104 __ link(failures[i], failure); 105 failures.clear(); 101 // All failures in the top-level disjunction link to here. 102 __ link(failures, __ label()); 106 103 107 104 // Move to the next input character and try again.
Note:
See TracChangeset
for help on using the changeset viewer.