[Mlir-commits] [mlir] efe9e88 - [MLIR][Presburger] IntegerRelation.h: Fix header guard
Arjun P
llvmlistbot at llvm.org
Mon Mar 21 08:20:49 PDT 2022
Author: Arjun P
Date: 2022-03-21T15:19:35Z
New Revision: efe9e88bd36ff1f1e342a326ec76b55fea6eebb1
URL: https://github.com/llvm/llvm-project/commit/efe9e88bd36ff1f1e342a326ec76b55fea6eebb1
DIFF: https://github.com/llvm/llvm-project/commit/efe9e88bd36ff1f1e342a326ec76b55fea6eebb1.diff
LOG: [MLIR][Presburger] IntegerRelation.h: Fix header guard
Added:
Modified:
mlir/include/mlir/Analysis/Presburger/IntegerRelation.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h b/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h
index dc9c9b9c2589b..f8f06b8ff9ae8 100644
--- a/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h
+++ b/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h
@@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H
-#define MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H
+#ifndef MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H
+#define MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H
#include "mlir/Analysis/Presburger/Fraction.h"
#include "mlir/Analysis/Presburger/Matrix.h"
@@ -564,4 +564,4 @@ class IntegerPolyhedron : public IntegerRelation {
} // namespace presburger
} // namespace mlir
-#endif // MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H
+#endif // MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H
More information about the Mlir-commits
mailing list