[flang-commits] [flang] a43d2f6 - [Flang][OpenMP] NFC: Fix typo in include guard (#91593)

via flang-commits flang-commits at lists.llvm.org
Fri May 17 06:32:21 PDT 2024


Author: Sergio Afonso
Date: 2024-05-17T14:32:17+01:00
New Revision: a43d2f686a46fd9d971aa65fde4563375e16f3de

URL: https://github.com/llvm/llvm-project/commit/a43d2f686a46fd9d971aa65fde4563375e16f3de
DIFF: https://github.com/llvm/llvm-project/commit/a43d2f686a46fd9d971aa65fde4563375e16f3de.diff

LOG: [Flang][OpenMP] NFC: Fix typo in include guard (#91593)

Added: 
    

Modified: 
    flang/lib/Lower/OpenMP/ClauseProcessor.h

Removed: 
    


################################################################################
diff  --git a/flang/lib/Lower/OpenMP/ClauseProcessor.h b/flang/lib/Lower/OpenMP/ClauseProcessor.h
index 7e7a291b94aee..4d3d4448e8f03 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"
@@ -312,4 +312,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