[flang-commits] [flang] [Flang][OpenMP] NFC: Fix typo in include guard (PR #91593)
Sergio Afonso via flang-commits
flang-commits at lists.llvm.org
Thu May 9 06:41:55 PDT 2024
https://github.com/skatrak created https://github.com/llvm/llvm-project/pull/91593
None
>From 0711e4aba152ff866c36fa3d625f51cd8d010a25 Mon Sep 17 00:00:00 2001
From: Sergio Afonso <safonsof at amd.com>
Date: Thu, 9 May 2024 14:37:27 +0100
Subject: [PATCH] [Flang][OpenMP] NFC: Fix typo in include guard
---
flang/lib/Lower/OpenMP/ClauseProcessor.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/flang/lib/Lower/OpenMP/ClauseProcessor.h b/flang/lib/Lower/OpenMP/ClauseProcessor.h
index 78c148ab02163..6474f7b5a372b 100644
--- a/flang/lib/Lower/OpenMP/ClauseProcessor.h
+++ b/flang/lib/Lower/OpenMP/ClauseProcessor.h
@@ -9,8 +9,8 @@
// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
//
//===----------------------------------------------------------------------===//
-#ifndef FORTRAN_LOWER_CLAUASEPROCESSOR_H
-#define FORTRAN_LOWER_CLAUASEPROCESSOR_H
+#ifndef FORTRAN_LOWER_CLAUSEPROCESSOR_H
+#define FORTRAN_LOWER_CLAUSEPROCESSOR_H
#include "Clauses.h"
#include "DirectivesCommon.h"
@@ -301,4 +301,4 @@ bool ClauseProcessor::markClauseOccurrence(mlir::UnitAttr &result) const {
} // namespace lower
} // namespace Fortran
-#endif // FORTRAN_LOWER_CLAUASEPROCESSOR_H
+#endif // FORTRAN_LOWER_CLAUSEPROCESSOR_H
More information about the flang-commits
mailing list