[mlir] Remove the unused source file.
authorHaojian Wu <hokein.wu@gmail.com>
Thu, 15 Sep 2022 11:54:29 +0000 (13:54 +0200)
committerHaojian Wu <hokein.wu@gmail.com>
Thu, 15 Sep 2022 12:30:40 +0000 (14:30 +0200)
It seems to be a missing file in 84d07d021333f7b5716f0444d5c09105557272e0

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

mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp [deleted file]

diff --git a/mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp b/mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp
deleted file mode 100644 (file)
index 4bd15e4..0000000
+++ /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);
-}