From 43e35a87e202966f172d3264b90f7195e860b9a5 Mon Sep 17 00:00:00 2001 From: "mvstanton@chromium.org" Date: Mon, 29 Jul 2013 12:22:34 +0000 Subject: [PATCH] Fix: Need to remove function type feedback between stress stages in release build BUG= R=verwaest@chromium.org Review URL: https://codereview.chromium.org/20987005 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15933 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/array-store-and-grow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/mjsunit/array-store-and-grow.js b/test/mjsunit/array-store-and-grow.js index dca6749..a03a753 100644 --- a/test/mjsunit/array-store-and-grow.js +++ b/test/mjsunit/array-store-and-grow.js @@ -204,5 +204,6 @@ assertEquals(0.5, array_store_1([], 0, 0.5)); assertOptimized(grow_store); grow_store(a,2048,1); assertUnoptimized(grow_store); + %ClearFunctionTypeFeedback(grow_store); })(); -- 2.7.4