llc Command Examples

Compiles LLVM Intermediate Representation or bitcode to target-specific assembly language. More information: https://www.llvm.org/docs/CommandGuide/llc.html.

llc {{path/to/file.ll}}

llc -O3 {{path/to/input.ll}}

llc --output {{path/to/output.s}}

llc -relocation-model=pic {{path/to/input.ll}}