Low Level Virtual Machine


NAME

opt

SYNOPSIS

opt [options] < filename>

DESCRIPTION

The opt command is the LLVM optimizer. It takes LLVM bytecode as input, runs the specified optimizations on it, and then outputs the optimized code in LLVM bytecode. The optimizations available via opt depend upon what libraries it was linked with, as well as any additional libraries that have been loaded with the -load option. Use the -help option to determine what optimizations you can use.

OPTIONS

EXIT STATUS

If opt succeeds, it will exit with 0. Otherwise, if an error occurs, it will exit with a non-zero value.

SEE ALSO

analyze
LLVM Team