Index: test/js-perf-test/SixSpeed/spread/spread__es5.js |
diff --git a/test/js-perf-test/SixSpeed/spread/spread__es5.js b/test/js-perf-test/SixSpeed/spread/spread__es5.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8b577ddc6b396c303bc4f3cebdeabe200368699e |
--- /dev/null |
+++ b/test/js-perf-test/SixSpeed/spread/spread__es5.js |
@@ -0,0 +1,15 @@ |
+// Copyright 2016 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// This benchmark is based on the six-speed benchmark build output. |
+// Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/> |
+ |
+"use strict"; |
+(function(test) { |
+ "use strict"; |
+ function fn() { |
+ return Math.max.apply(Math, [1,2,3]); |
+ } |
+ test("Spread", "ES5", fn); |
+})(benchTest); |