[Mlir-commits] [mlir] e488ce2 - [mlir] Remove the unused source file.

Haojian Wu llvmlistbot at llvm.org
Thu Sep 15 05:30:57 PDT 2022


Author: Haojian Wu
Date: 2022-09-15T14:30:40+02:00
New Revision: e488ce29ec5ead2d518c183890215313c9d1b1f0

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

LOG: [mlir] Remove the unused source file.

It seems to be a missing file in 84d07d021333f7b5716f0444d5c09105557272e0

Differential Revision: https://reviews.llvm.org/D133937

Added: 
    

Modified: 
    

Removed: 
    mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp


################################################################################
diff  --git a/mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp b/mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp
deleted file mode 100644
index 4bd15e49824a3..0000000000000
--- a/mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===- AffineStructuresParser.cpp - Parser for AffineStructures -*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-#include "./AffineStructuresParser.h"
-#include "mlir/AsmParser/AsmParser.h"
-#include "mlir/IR/IntegerSet.h"
-
-using namespace mlir;
-using namespace presburger;
-
-FailureOr<IntegerPolyhedron>
-mlir::parseIntegerSetToFAC(llvm::StringRef str, MLIRContext *context,
-                           bool printDiagnosticInfo) {
-  IntegerSet set = parseIntegerSet(str, context, printDiagnosticInfo);
-
-  if (!set)
-    return failure();
-
-  return FlatAffineValueConstraints(set);
-}


        


More information about the Mlir-commits mailing list