16 lines
685 B
Text
16 lines
685 B
Text
//===- TestPDLL.pdll - Test PDLL functionality ----------------------------===//
|
|
//
|
|
// 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 "TestOps.td"
|
|
#include "mlir/Interfaces/CastInterfaces.td"
|
|
|
|
/// A simple pattern that matches and replaces an operation.
|
|
Pattern TestSimplePattern => replace op<test.simple> with op<test.success>;
|
|
|
|
// Test the import of interfaces.
|
|
Pattern TestInterface => replace _: CastOpInterface with op<test.success>;
|