// Copyright 2018 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.// Flags: --code-comments --print-code(functionsimple_test(){functionfib(n){returnn<2?n:fib(n-1)+fib(n-2);}// Call a number of times to trigger optimization.for(leti=0;i<100;++i){fib(8);}})();(functiontest_asm(){functionasm(){'use asm';functionf(){}returnf;}varm=asm();})();