zhifei_fang@apple.com | 7316680 | 2019-10-22 22:46:40 +0000 | [diff] [blame] | 1 | //@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py |
utatane.tea@gmail.com | 975c12a | 2017-06-01 05:18:25 +0000 | [diff] [blame] | 2 | function test(a, b, c, d, e) |
3 | { | ||||
4 | return a.concat(b).concat(c).concat(d).concat(e); | ||||
5 | } | ||||
6 | noInline(test); | ||||
7 | |||||
8 | for (var i = 0; i < 1e6; ++i) | ||||
9 | test(new String("Cocoa"), new String("Cappuccino"), new String("Matcha"), new String("Rize"), new String("Kilimanjaro")); |