Chromium Code Reviews| Index: src/ia32/regexp-macro-assembler-ia32.cc |
| =================================================================== |
| --- src/ia32/regexp-macro-assembler-ia32.cc (revision 4831) |
| +++ src/ia32/regexp-macro-assembler-ia32.cc (working copy) |
| @@ -1034,7 +1034,8 @@ |
| int RegExpMacroAssemblerIA32::CheckStackGuardState(Address* return_address, |
| Code* re_code, |
| Address re_frame) { |
| - if (StackGuard::IsStackOverflow()) { |
| + Isolate* isolate = Isolate::Current(); |
| + if (isolate->stack_guard()->IsStackOverflow()) { |
| Top::StackOverflow(); |
| return EXCEPTION; |
| } |