| Index: src/ic/x87/handler-compiler-x87.cc
|
| diff --git a/src/ic/x87/handler-compiler-x87.cc b/src/ic/x87/handler-compiler-x87.cc
|
| index dc36cfb5959129e40151a1ec3a293c1a0ea2229b..9e35da11faf40a2f1a1b231db5f36b0d4e10f1ed 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -759,7 +759,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| __ TailCallRuntime(Runtime::kStoreCallbackProperty);
|
|
|
| // Return the generated code.
|
| - return GetCode(kind(), Code::FAST, name);
|
| + return GetCode(kind(), name);
|
| }
|
|
|
|
|
| @@ -801,7 +801,7 @@ Handle<Code> NamedLoadHandlerCompiler::CompileLoadGlobal(
|
| FrontendFooter(name, &miss);
|
|
|
| // Return the generated code.
|
| - return GetCode(kind(), Code::NORMAL, name);
|
| + return GetCode(kind(), name);
|
| }
|
|
|
|
|
|
|