FLANG
Execute.h
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#ifndef FORTRAN_OPTIMIZER_BUILDER_RUNTIME_EXECUTE_H
10#define FORTRAN_OPTIMIZER_BUILDER_RUNTIME_EXECUTE_H
11
12namespace mlir {
13class Value;
14class Location;
15} // namespace mlir
16
17namespace fir {
18class FirOpBuilder;
19} // namespace fir
20
21namespace fir::runtime {
22
29void genExecuteCommandLine(fir::FirOpBuilder &, mlir::Location,
30 mlir::Value command, mlir::Value wait,
31 mlir::Value exitstat, mlir::Value cmdstat,
32 mlir::Value cmdmsg);
33
34} // namespace fir::runtime
35#endif // FORTRAN_OPTIMIZER_BUILDER_RUNTIME_EXECUTE_H
Definition: FIRBuilder.h:55
Definition: AbstractConverter.h:31
@ Value
Lower argument to a value. Mainly intended for scalar arguments.
Definition: AbstractConverter.h:27