Skip to content

Commit 32e5b84

Browse files
committed
Post-merge fixes
1 parent a519f98 commit 32e5b84

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

flang/include/flang/Support/Timing.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- Timing.h - Execution time measurement facilities ---------*- C++ -*-===//
1+
//===-- include/flang/Support/Timing.h --------------------------*- C++ -*-===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef FORTRAN_SUPPORT_TIMING_H
14-
#define FORTRAN_SUPPORT_TIMING_H
13+
#ifndef FORTRAN_SUPPORT_TIMING_H_
14+
#define FORTRAN_SUPPORT_TIMING_H_
1515

1616
#include "mlir/Support/Timing.h"
1717

@@ -24,4 +24,4 @@ std::unique_ptr<mlir::OutputStrategy> createTimingFormatterText(
2424

2525
} // namespace Fortran::support
2626

27-
#endif // FORTRAN_SUPPORT_TIMING_H
27+
#endif /* FORTRAN_SUPPORT_TIMING_H_ */

flang/lib/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
add_subdirectory(Support)
21
add_subdirectory(Evaluate)
32
add_subdirectory(Decimal)
43
add_subdirectory(Lower)

flang/lib/Support/Timing.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- Timing.cpp - Execution time measurement facilities -----------------===//
1+
//===-- lib/Support/Timing.cpp ----------------------------------*- C++ -*-===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

0 commit comments

Comments
 (0)