mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
e206b99c28
With all the previous refactorings this slipped through and now we always dump the contents of the bitcode files, even if -dump is not passed.
12 lines
350 B
Plaintext
12 lines
350 B
Plaintext
RUN: llvm-bcanalyzer -dump %S/Inputs/has-block-info.bc | FileCheck -check-prefix=WITH-DUMP %s
|
|
RUN: llvm-bcanalyzer %S/Inputs/has-block-info.bc | FileCheck -check-prefix=WITHOUT-DUMP %s
|
|
|
|
WITH-DUMP: <ABC
|
|
WITHOUT-DUMP-NOT: <ABC
|
|
WITH-DUMP: </ABC>
|
|
WITHOUT-DUMP-NOT: </ABC>
|
|
WITH-DUMP: <XYZ
|
|
WITHOUT-DUMP-NOT: <XYZ
|
|
WITH-DUMP: </XYZ>
|
|
WITHOUT-DUMP-NOT: </XYZ>
|