Skip to content

Test value

test_value

create_ssa_value(t: AttributeCovT) -> OpResult[AttributeCovT]

Source code in xdsl/utils/test_value.py
5
6
7
def create_ssa_value(t: AttributeCovT) -> OpResult[AttributeCovT]:
    op = TestOp(result_types=(t,))
    return op.results[0]  # pyright: ignore[reportReturnType]