| Index: src/ia32/fast-codegen-ia32.cc
|
| ===================================================================
|
| --- src/ia32/fast-codegen-ia32.cc (revision 3200)
|
| +++ src/ia32/fast-codegen-ia32.cc (working copy)
|
| @@ -71,9 +71,9 @@
|
|
|
| { Comment cmnt(masm_, "[ Stack check");
|
| Label ok;
|
| - ExternalReference stack_guard_limit =
|
| - ExternalReference::address_of_stack_guard_limit();
|
| - __ cmp(esp, Operand::StaticVariable(stack_guard_limit));
|
| + ExternalReference stack_limit =
|
| + ExternalReference::address_of_stack_limit();
|
| + __ cmp(esp, Operand::StaticVariable(stack_limit));
|
| __ j(above_equal, &ok, taken);
|
| StackCheckStub stub;
|
| __ CallStub(&stub);
|
|
|