mirror of https://github.com/m-labs/artiq.git
22 lines
549 B
Python
22 lines
549 B
Python
# RUN: %python -m artiq.compiler.testbench.irgen %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
if 1:
|
|
2
|
|
else:
|
|
3
|
|
|
|
# CHECK-L: NoneType input.__modinit__() {
|
|
# CHECK-L: 1:
|
|
# CHECK-L: %2 = int(width=32) eval `1`
|
|
# CHECK-L: branch_if int(width=32) %2, ssa.basic_block %3, ssa.basic_block %5
|
|
# CHECK-L: 3:
|
|
# CHECK-L: %4 = int(width=32) eval `2`
|
|
# CHECK-L: branch ssa.basic_block %7
|
|
# CHECK-L: 5:
|
|
# CHECK-L: %6 = int(width=32) eval `3`
|
|
# CHECK-L: branch ssa.basic_block %7
|
|
# CHECK-L: 7:
|
|
# CHECK-L: return NoneType None
|
|
# CHECK-L: }
|