summaryrefslogtreecommitdiff
path: root/docs/tools
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-04-30 02:04:10 +0000
committerChad Rosier <mcrosier@apple.com>2011-04-30 02:04:10 +0000
commite2bb7b930750dd662f7b664560b567ecf357b16c (patch)
tree5458ee977256818b1a8227852d65553881a4542f /docs/tools
parent4525ae5cd5af82fe06c925b60267afce12d594b1 (diff)
downloadclang-e2bb7b930750dd662f7b664560b567ecf357b16c.tar.gz
Documentation for -Oz; Updated synopsis and item.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tools')
-rw-r--r--docs/tools/clang.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tools/clang.pod b/docs/tools/clang.pod
index 4f4c7bfc4a..704cc8743b 100644
--- a/docs/tools/clang.pod
+++ b/docs/tools/clang.pod
@@ -7,7 +7,7 @@ clang - the Clang C, C++, and Objective-C compiler
=head1 SYNOPSIS
B<clang> [B<-c>|B<-S>|B<-E>] B<-std=>I<standard> B<-g>
- [B<-O0>|B<-O1>|B<-O2>|B<-Os>|B<-O3>|B<-O4>]
+ [B<-O0>|B<-O1>|B<-O2>|B<-Os>|B<-Oz>|B<-O3>|B<-O4>]
B<-W>I<warnings...> B<-pedantic>
B<-I>I<dir...> B<-L>I<dir...>
B<-D>I<macro[=defn]>
@@ -263,7 +263,7 @@ may not exist on earlier ones.
=over
-=item B<-O0> B<-O1> B<-O2> B<-Os> B<-O3> B<-O4>
+=item B<-O0> B<-O1> B<-O2> B<-Os> B<-Oz> B<-O3> B<-O4>
Specify which optimization level to use. B<-O0> means "no optimization": this
level compiles the fastest and generates the most debuggable code. B<-O2> is a