Lines Matching refs:split
1 // Check that (1) the output split marker is inserted and (2) the input file is
2 // split using the default split marker.
3 // RUN: mlir-translate %s -split-input-file -mlir-to-llvmir \
4 // RUN: -output-split-marker="; -----" \
7 // With the second command, check that (3) the input split marker is used and
8 // (4) the output split marker is empty if not specified.
9 // RUN: mlir-translate %s -split-input-file="// ""-----" -mlir-to-llvmir \
10 // RUN: -output-split-marker="; -----" \
11 // RUN: | mlir-translate -split-input-file -import-llvm \
12 // RUN: -split-input-file="; -----" \
15 // Check that (5) the input is not split if `-split-input-file` is not given.