Files
clang-p2996/mlir/test/Examples/Toy/Ch7/jit.toy
Mehdi Amini f8c1f3b14a Revert "Revert "Fix MLIR Toy tutorial JIT example and add a test to cover it""
This reverts commit f36060417a and
reapply commit ae15b1e7ad.

JIT test must be annotated to not run on Windows.
2021-02-19 23:54:52 +00:00

7 lines
94 B
Plaintext

# RUN: toyc-ch7 -emit=jit %s
# UNSUPPORTED: windows
def main() {
print([[1, 2], [3, 4]]);
}