[PATCH] D133937: [mlir] Remove the unused source file.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 15 05:30:55 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe488ce29ec5e: [mlir] Remove the unused source file. (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133937/new/
https://reviews.llvm.org/D133937
Files:
mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp
Index: mlir/unittests/Dialect/Affine/Analysis/AffineStructuresParser.cpp
===================================================================
--- 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);
-}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133937.460377.patch
Type: text/x-patch
Size: 1102 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220915/92423fab/attachment.bin>
More information about the cfe-commits
mailing list