| Index: src/x87/full-codegen-x87.cc
|
| diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc
|
| index 8a92bfd606b10f8f5f0abc3fa89c6f3be83c056b..155c0f2a0ce6e2d367e1828d3793817e26ca7d28 100644
|
| --- a/src/x87/full-codegen-x87.cc
|
| +++ b/src/x87/full-codegen-x87.cc
|
| @@ -4495,10 +4495,10 @@ void FullCodeGenerator::EmitDebugIsActive(CallRuntime* expr) {
|
|
|
|
|
| void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
| - if (expr->function() != NULL &&
|
| - expr->function()->intrinsic_type == Runtime::INLINE) {
|
| + InlineFunctionGenerator generator = FindInlineFunctionGenerator(expr);
|
| + if (generator != nullptr) {
|
| Comment cmnt(masm_, "[ InlineRuntimeCall");
|
| - EmitInlineRuntimeCall(expr);
|
| + EmitInlineRuntimeCall(expr, generator);
|
| return;
|
| }
|
|
|
|
|