-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

opt


> A tool that takes LLVM source files and runs specified optimizations and/or analyses on them.

More information.


Run an optimization or analysis on a bitcode file:

opt -{passname} {path/to/file.bc} -S -o {file_opt.bc}

Output the Control Flow Graph of a function to a `.dot` file:

opt {-dot-cfg} -S {path/to/file.bc} -disable-output

Optimize the program at level 2 and output the result to another file:

opt -O2 {path/to/file.bc} -S -o {path/to/output_file.bc}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 03:18:12 2024