diff options
| author | Ramkumar Ramachandra <ramkumar.ramachandra@codasip.com> | 2024-07-02 10:42:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-02 10:42:33 +0100 |
| commit | db791b278a414fb6df1acc1799adcf11d8fb9169 (patch) | |
| tree | 2584310aa726ee2bbdeab6442676911cdd749726 /mlir/test/python/python_test_ops.td | |
| parent | 01134e69d29370ee9dbd7d281abaa27063f21396 (diff) | |
mlir/LogicalResult: move into llvm (#97309)
This patch is part of a project to move the Presburger library into
LLVM.
Diffstat (limited to 'mlir/test/python/python_test_ops.td')
| -rw-r--r-- | mlir/test/python/python_test_ops.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mlir/test/python/python_test_ops.td b/mlir/test/python/python_test_ops.td index 95301985e3fd..c0bc18448610 100644 --- a/mlir/test/python/python_test_ops.td +++ b/mlir/test/python/python_test_ops.td @@ -128,7 +128,7 @@ def InferResultsOp : TestOp<"infer_results_op", [InferTypeOpInterface]> { let results = (outs AnyInteger:$single, AnyInteger:$doubled); let extraClassDeclaration = [{ - static ::mlir::LogicalResult inferReturnTypes( + static ::llvm::LogicalResult inferReturnTypes( ::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location, ::mlir::ValueRange operands, ::mlir::DictionaryAttr attributes, ::mlir::OpaqueProperties, @@ -151,7 +151,7 @@ def InferResultsVariadicInputsOp : TestOp<"infer_results_variadic_inputs_op", let results = (outs I32OrF32:$res); let extraClassDeclaration = [{ - static ::mlir::LogicalResult inferReturnTypes( + static ::llvm::LogicalResult inferReturnTypes( ::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location, ::mlir::ValueRange operands, ::mlir::DictionaryAttr attributes, ::mlir::OpaqueProperties, @@ -180,7 +180,7 @@ def InferShapedTypeComponentsOp : TestOp<"infer_shaped_type_components_op", let results = (outs AnyTensor:$result); let extraClassDefinition = [{ - ::mlir::LogicalResult $cppClass::inferReturnTypeComponents( + ::llvm::LogicalResult $cppClass::inferReturnTypeComponents( ::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location, ::mlir::ValueShapeRange operands, ::mlir::DictionaryAttr attributes, ::mlir::OpaqueProperties properties, ::mlir::RegionRange regions, |
