Mercurial > hg > CbC > CbC_llvm
comparison mlir/unittests/TableGen/passes.td @ 223:5f17cb93ff66 llvm-original
LLVM13 (2021/7/18)
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:43:00 +0900 |
parents | |
children | c4bab56944e8 |
comparison
equal
deleted
inserted
replaced
222:81f6424ef0e3 | 223:5f17cb93ff66 |
---|---|
1 //===-- passes.td - PassGen test definition file -----------*- tablegen -*-===// | |
2 // | |
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
4 // See https://llvm.org/LICENSE.txt for license information. | |
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
6 // | |
7 //===----------------------------------------------------------------------===// | |
8 | |
9 include "mlir/Pass/PassBase.td" | |
10 include "mlir/Pass/PassBase.td" | |
11 include "mlir/Rewrite/PassUtil.td" | |
12 | |
13 def TestPass : Pass<"test"> { | |
14 let summary = "Test pass"; | |
15 | |
16 let constructor = "::createTestPass()"; | |
17 | |
18 let options = RewritePassUtils.options; | |
19 } |