1 //===-- Command.cpp -- generate command line runtime API calls ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "flang/Optimizer/Builder/Runtime/Command.h" 10 #include "flang/Optimizer/Builder/FIRBuilder.h" 11 #include "flang/Optimizer/Builder/Runtime/RTBuilder.h" 12 #include "flang/Runtime/command.h" 13 14 using namespace Fortran::runtime; 15 16 mlir::Value fir::runtime::genCommandArgumentCount(fir::FirOpBuilder &builder, 17 mlir::Location loc) { 18 auto argumentCountFunc = 19 fir::runtime::getRuntimeFunc<mkRTKey(ArgumentCount)>(loc, builder); 20 return builder.create<fir::CallOp>(loc, argumentCountFunc).getResult(0); 21 } 22