eliminate lengths from record bodies
[oota-llvm.git] / docs / CommandGuide / opt.pod
index 16d594fd641b0ac6b48e05ccd159b0f3c0741667..6d409565e906abab0167174c04fdd0de77eebc38 100644 (file)
@@ -65,11 +65,7 @@ This is typically used to optimize the output from the llvm-gcc front end. It
 might be useful for other front end compilers as well. To discover the full set
 of options available, use the following command:
 
-=over
-
-B<llvm-as < /dev/null | opt -std-compile-opts -disable-output -debug-pass=Arguments>
-
-=back
+   llvm-as < /dev/null | opt -std-compile-opts -disable-output -debug-pass=Arguments
 
 =item B<-disable-inlining>
 
@@ -122,11 +118,7 @@ or analysis passes. Once loaded, the object will add new command line options to
 enable various optimizations or analyses.  To see the new complete list of 
 optimizations, use the B<-help> and B<-load> options together. For example:
 
-=over
-
-B<opt -load>=I<plugin> B<-help>
-
-=back
+   opt -load=plugin.so -help
 
 =item B<-p>