Index: test/mjsunit/array-construct-transition.js |
diff --git a/test/mjsunit/array-construct-transition.js b/test/mjsunit/array-construct-transition.js |
index 5865e3320d0e98311b53a822972081dcfe251aa7..577e321a55f622bc92349dd61900efb4d0542178 100644 |
--- a/test/mjsunit/array-construct-transition.js |
+++ b/test/mjsunit/array-construct-transition.js |
@@ -1,4 +1,4 @@ |
-// Copyright 2011 the V8 project authors. All rights reserved. |
+// Copyright 2012 the V8 project authors. All rights reserved. |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
// met: |
@@ -27,7 +27,7 @@ |
// Flags: --allow-natives-syntax --smi-only-arrays |
-support_smi_only_arrays = %HasFastSmiOnlyElements([1,2,3,4,5,6,7,8,9,10]); |
+support_smi_only_arrays = %HasFastSmiOnlyElements(new Array(1,2,3,4,5,6,7,8)); |
if (support_smi_only_arrays) { |
var a = new Array(0, 1, 2); |