From e488ce29ec5ead2d518c183890215313c9d1b1f0 Mon Sep 17 00:00:00 2001 From: Haojian Wu Date: Thu, 15 Sep 2022 13:54:29 +0200 Subject: [PATCH] [mlir] Remove the unused source file. It seems to be a missing file in 84d07d021333f7b5716f0444d5c09105557272e0 Differential Revision: https://reviews.llvm.org/D133937 --- .../Affine/Analysis/AffineStructuresParser.cpp | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 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 4bd15e4..0000000 --- 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 -mlir::parseIntegerSetToFAC(llvm::StringRef str, MLIRContext *context, - bool printDiagnosticInfo) { - IntegerSet set = parseIntegerSet(str, context, printDiagnosticInfo); - - if (!set) - return failure(); - - return FlatAffineValueConstraints(set); -} -- 2.7.4