diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-25 16:44:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-25 16:44:52 +0000 |
commit | 552e22f44abbd82e4b3e2642d6027ed55419137c (patch) | |
tree | 534241a85abfac246ae7ed1b6a0a17ecd603d37f /docs | |
parent | 8e336eb04d399fafd7ffeae36b015f8084557a23 (diff) | |
download | external_llvm-552e22f44abbd82e4b3e2642d6027ed55419137c.zip external_llvm-552e22f44abbd82e4b3e2642d6027ed55419137c.tar.gz external_llvm-552e22f44abbd82e4b3e2642d6027ed55419137c.tar.bz2 |
remove a bunch of dead options that never did anything.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CommandGuide/llvm-ld.pod | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/CommandGuide/llvm-ld.pod b/docs/CommandGuide/llvm-ld.pod index d655737..8d4a6e7 100644 --- a/docs/CommandGuide/llvm-ld.pod +++ b/docs/CommandGuide/llvm-ld.pod @@ -159,34 +159,6 @@ code generator. =over -=item B<-O0> - -An alias for the -O1 option. - -=item B<-O1> - -Optimize for linking speed, not execution speed. The optimizer will attempt to -reduce the size of the linked program to reduce I/O but will not otherwise -perform any link-time optimizations. - -=item B<-O2> - -Perform only the minimal or required set of scalar optimizations. - -=item B<-03> - -An alias for the -O2 option. - -=item B<-04> - -Perform the standard link time inter-procedural optimizations. This will -attempt to optimize the program taking the entire program into consideration. - -=item B<-O5> - -Perform aggressive link time optimizations. This is the same as -O4 but works -more aggressively to optimize the program. - =item B<-disable-inlining> Do not run the inlining pass. Functions will not be inlined into other |