Skip to content

Commit 19a3e3f

Browse files
committed
format code
format code
1 parent 125efa6 commit 19a3e3f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

flang/include/flang/Optimizer/Builder/IntrinsicCall.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ struct IntrinsicLibrary {
232232
mlir::Value genFloor(mlir::Type, llvm::ArrayRef<mlir::Value>);
233233
mlir::Value genFraction(mlir::Type resultType,
234234
mlir::ArrayRef<mlir::Value> args);
235-
fir::ExtendedValue genGetCwd(std::optional<mlir::Type> resultType, llvm::ArrayRef<fir::ExtendedValue> args);
235+
fir::ExtendedValue genGetCwd(std::optional<mlir::Type> resultType,
236+
llvm::ArrayRef<fir::ExtendedValue> args);
236237
void genGetCommand(mlir::ArrayRef<fir::ExtendedValue> args);
237238
mlir::Value genGetPID(mlir::Type resultType,
238239
llvm::ArrayRef<mlir::Value> args);

flang/include/flang/Optimizer/Builder/Runtime/Command.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,10 @@ mlir::Value genGetEnvVariable(fir::FirOpBuilder &, mlir::Location,
5353
mlir::Value length, mlir::Value trimName,
5454
mlir::Value errmsg);
5555

56-
5756
/// Generate a call to the GetCwd runtime function which implements
5857
/// the GETCWD intrinsic.
59-
mlir::Value genGetCwd(fir::FirOpBuilder &builder,
60-
mlir::Location loc, mlir::Value c);
58+
mlir::Value genGetCwd(fir::FirOpBuilder &builder, mlir::Location loc,
59+
mlir::Value c);
6160

6261
} // namespace fir::runtime
6362
#endif // FORTRAN_OPTIMIZER_BUILDER_RUNTIME_COMMAND_H

flang/include/flang/Runtime/command.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ std::int32_t RTNAME(GetEnvVariable)(const Descriptor &name,
5757
const char *sourceFile = nullptr, int line = 0);
5858

5959
// Calls getcwd()
60-
std::int32_t RTNAME(GetCwd)(const Descriptor &cwd, const char *sourceFile, int line);
60+
std::int32_t RTNAME(GetCwd)(
61+
const Descriptor &cwd, const char *sourceFile, int line);
6162
}
6263
} // namespace Fortran::runtime
6364

0 commit comments

Comments
 (0)