diff --git a/pages/common/llvm-bcanalyzer.md b/pages/common/llvm-bcanalyzer.md new file mode 100644 index 000000000..11427ca67 --- /dev/null +++ b/pages/common/llvm-bcanalyzer.md @@ -0,0 +1,16 @@ +# llvm-bcanalyzer + +> LLVM Bitcode (`.bc`) analyzer. +> More information: . + +- 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`