| Index: test/mjsunit/array-store-and-grow.js
|
| diff --git a/test/mjsunit/array-store-and-grow.js b/test/mjsunit/array-store-and-grow.js
|
| index 5ac95e9b3ad7d8099e9d6d53738536488e873a53..bc5d5afe8025fe8b343b47d327e9748e01439f4f 100644
|
| --- a/test/mjsunit/array-store-and-grow.js
|
| +++ b/test/mjsunit/array-store-and-grow.js
|
| @@ -25,13 +25,15 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -// Flags: --allow-natives-syntax
|
| +// Flags: --allow-natives-syntax --no-always-opt
|
|
|
| // Verifies that the KeyedStoreIC correctly handles out-of-bounds stores
|
| // to an array that grow it by a single element. Test functions are
|
| // called twice to make sure that the IC is used, first call is handled
|
| // by the runtime in the miss stub.
|
|
|
| +assertFalse(isAlwaysOptimize());
|
| +
|
| function array_store_1(a,b,c) {
|
| return (a[b] = c);
|
| }
|
|
|