| Index: test/cctest/compiler/test-run-inlining.cc
|
| diff --git a/test/cctest/compiler/test-run-inlining.cc b/test/cctest/compiler/test-run-inlining.cc
|
| index 61f3b62e89e49856f8ae4914178c4e764e2553d1..7dc6238d8bc6db5ea8098cf79154fda7a25b4092 100644
|
| --- a/test/cctest/compiler/test-run-inlining.cc
|
| +++ b/test/cctest/compiler/test-run-inlining.cc
|
| @@ -499,7 +499,7 @@ TEST(InlineBuiltin) {
|
| "(function () {"
|
| " function foo(s,t,u) { AssertInlineCount(2); return true; }"
|
| " function bar() { return foo(); };"
|
| - " %SetInlineBuiltinFlag(foo);"
|
| + " %SetForceInlineFlag(foo);"
|
| " return bar;"
|
| "})();",
|
| kBuiltinInlineFlags);
|
| @@ -516,8 +516,8 @@ TEST(InlineNestedBuiltin) {
|
| " function foo(s,t,u) { AssertInlineCount(3); return true; }"
|
| " function baz(s,t,u) { return foo(s,t,u); }"
|
| " function bar() { return baz(); };"
|
| - " %SetInlineBuiltinFlag(foo);"
|
| - " %SetInlineBuiltinFlag(baz);"
|
| + " %SetForceInlineFlag(foo);"
|
| + " %SetForceInlineFlag(baz);"
|
| " return bar;"
|
| "})();",
|
| kBuiltinInlineFlags);
|
|
|