// Copyright 2017 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.newBenchmarkSuite('SetFromArrayLike',[1000],[newBenchmark('SetFromArrayLike',false,false,0,SetFromArrayLike),]);letsrc=[1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4];lettyped_dest=newFloat32Array(16);functionSetFromArrayLike(){typed_dest.set(src);}