repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
llvm
/
utils
/
lit
/
tests
/
Inputs
/
shtest-shell
/
continuations.txt
blob
4872733b16abdac7f2cf5fea924fec8bb4e68807
1
RUN: echo 'foo' \
2
RUN: 'bar' >> %t.out
3
CHECK: foo bar
4
5
RUN: echo 'foo' \
6
RUN: 'bar' \
7
RUN: 'baz' >> %t.out
8
CHECK: foo bar baz
9
10
# v~~ intentional whitespace
11
RUN: echo 'foo' \
12
RUN: 'bar' \
13
# ^ intentional whitespace
14
RUN: 'baz' >> %t.out
15
CHECK: foo bar baz
16
17
RUN: FileCheck -match-full-lines -input-file=%t.out %s