From 408128d2f1b41e5bfe434529d41e72335123b2d8 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Thu, 11 Sep 2003 19:58:03 +0000 Subject: Adding a skeleton for the LLVM Command Guide. Hopefully the group as a whole will update this into a real guide. llvm-svn: 8483 --- llvm/docs/CommandGuide/opt.html | 116 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 llvm/docs/CommandGuide/opt.html (limited to 'llvm/docs/CommandGuide/opt.html') diff --git a/llvm/docs/CommandGuide/opt.html b/llvm/docs/CommandGuide/opt.html new file mode 100644 index 00000000000..8e1274ee93a --- /dev/null +++ b/llvm/docs/CommandGuide/opt.html @@ -0,0 +1,116 @@ + + +opt + + + + +
+

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 + +
+University of Illinois at Urbana-Champaign + + + -- cgit v1.2.3