1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:42:08 +02:00
tldr/pages/common/llvm-bcanalyzer.md
2021-09-19 16:26:22 +02:00

16 lines
423 B
Markdown

# llvm-bcanalyzer
> LLVM Bitcode (`.bc`) analyzer.
> More information: <https://llvm.org/docs/CommandGuide/llvm-bcanalyzer.html>.
- Print statistics about a Bitcode file:
`llvm-bcanalyzer {{path/to/file.bc}}`
- Print an SGML representation and statistics about a Bitcode file:
`llvm-bcanalyzer -dump {{path/to/file.bc}}`
- Read a Bitcode file from `stdin` and analyze it:
`cat {{path/to/file.bc}} | llvm-bcanalyzer`