blob: 67214da0d43a8f8a66870ba7a5268ba2e5799962 [file] [log] [blame]
# RUN: %PYTHON %s | FileCheck %s
from mlir_standalone.ir import *
from mlir_standalone.dialects import (
builtin as builtin_d,
standalone as standalone_d
)
with Context():
standalone_d.register_dialect()
module = Module.parse("""
%0 = arith.constant 2 : i32
%1 = standalone.foo %0 : i32
""")
# CHECK: %[[C:.*]] = arith.constant 2 : i32
# CHECK: standalone.foo %[[C]] : i32
print(str(module))