diff options
Diffstat (limited to 'deps/v8/test/mjsunit/compiler/inline-accessors.js')
-rw-r--r-- | deps/v8/test/mjsunit/compiler/inline-accessors.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/test/mjsunit/compiler/inline-accessors.js b/deps/v8/test/mjsunit/compiler/inline-accessors.js index a4cf7ae8c1..90e0263b42 100644 --- a/deps/v8/test/mjsunit/compiler/inline-accessors.js +++ b/deps/v8/test/mjsunit/compiler/inline-accessors.js @@ -78,8 +78,8 @@ function TryGetter(context, getter, obj, expected, expectException) { assertEquals(7, exception.stack.split('\n').length); } %DeoptimizeFunction(context); - %ClearFunctionTypeFeedback(context); - %ClearFunctionTypeFeedback(getter); + %ClearFunctionFeedback(context); + %ClearFunctionFeedback(getter); } function TestGetterInAllContexts(getter, obj, expected, expectException) { @@ -239,8 +239,8 @@ function TrySetter(context, setter, obj, expectException, value, expected) { assertEquals(7, exception.stack.split('\n').length); } %DeoptimizeFunction(context); - %ClearFunctionTypeFeedback(context); - %ClearFunctionTypeFeedback(setter); + %ClearFunctionFeedback(context); + %ClearFunctionFeedback(setter); } function TestSetterInAllContexts(setter, obj, expectException) { |