Skip to content

Commit cecc9b8

Browse files
committed
Formatting and ordering fixes
1 parent 387b309 commit cecc9b8

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

flang/lib/Optimizer/Builder/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ add_flang_library(FIRBuilder
2323
Runtime/Execute.cpp
2424
Runtime/Inquiry.cpp
2525
Runtime/Intrinsics.cpp
26-
Runtime/Numeric.cpp
2726
Runtime/Main.cpp
27+
Runtime/Numeric.cpp
2828
Runtime/Pointer.cpp
2929
Runtime/Ragged.cpp
3030
Runtime/Reduction.cpp

flang/lib/Optimizer/Builder/Runtime/Main.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
//===-- Main.cpp - generate main runtime API calls ----------------*- C++
2-
//-*-===//
1+
//===-- Main.cpp - generate main runtime API calls --------------*- C++ -*-===//
32
//
43
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
54
// See https://llvm.org/LICENSE.txt for license information.
@@ -26,7 +25,7 @@ void fir::runtime::genMain(fir::FirOpBuilder &builder, mlir::Location loc,
2625
auto ptrTy = mlir::LLVM::LLVMPointerType::get(context);
2726

2827
// void ProgramStart(int argc, char** argv, char** envp,
29-
// _QQEnvironmentDefaults* env)
28+
// _QQEnvironmentDefaults* env)
3029
auto startFn = builder.createFunction(
3130
loc, RTNAME_STRING(ProgramStart),
3231
mlir::FunctionType::get(context, {argcTy, ptrTy, ptrTy, ptrTy}, {}));

0 commit comments

Comments
 (0)