1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

llvm-bcanalyzer: add page (#6558)

This commit is contained in:
pixel 2021-09-19 16:26:22 +02:00 committed by GitHub
parent 6474a32842
commit 9040e5a171
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
# 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`