[Mlir-commits] [mlir] 58b8730 - [mlir][EmitC] Harmonize include guard (NFC)

Marius Brehler llvmlistbot at llvm.org
Thu Feb 1 10:52:46 PST 2024


Author: Marius Brehler
Date: 2024-02-01T18:51:43Z
New Revision: 58b87300ecaac71e237cefec80d3934610f55fbd

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

LOG: [mlir][EmitC] Harmonize include guard (NFC)

Harmonizes the include guard as it is rather uncommon within the MLIR
subproject to append an underscore to include guards.

Added: 
    

Modified: 
    mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h b/mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h
index 4fe405ed1d3a9..7ff682293f48b 100644
--- a/mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h
+++ b/mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h
@@ -6,8 +6,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
-#define MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
+#ifndef MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H
+#define MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H
 
 #include <memory>
 
@@ -26,4 +26,4 @@ std::unique_ptr<Pass> createConvertSCFToEmitCPass();
 
 } // namespace mlir
 
-#endif // MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
+#endif // MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H


        


More information about the Mlir-commits mailing list