diff options
Diffstat (limited to 'usr.bin/clang/opt/opt.1')
-rw-r--r-- | usr.bin/clang/opt/opt.1 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/clang/opt/opt.1 b/usr.bin/clang/opt/opt.1 index e5bacdf..a498d99 100644 --- a/usr.bin/clang/opt/opt.1 +++ b/usr.bin/clang/opt/opt.1 @@ -1,7 +1,7 @@ .\" $FreeBSD$ .\" Man page generated from reStructuredText. . -.TH "OPT" "1" "2015-05-30" "3.7" "LLVM" +.TH "OPT" "1" "2016-03-03" "3.8" "LLVM" .SH NAME opt \- LLVM optimizer . @@ -39,16 +39,16 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] The \fBopt\fP command is the modular LLVM optimizer and analyzer. It takes LLVM source files as input, runs the specified optimizations or analyses on it, and then outputs the optimized file or the analysis results. The -function of \fBopt\fP depends on whether the \fI\-analyze\fP option is +function of \fBopt\fP depends on whether the \fB\-analyze\fP option is given. .sp -When \fI\-analyze\fP is specified, \fBopt\fP performs various analyses +When \fB\-analyze\fP is specified, \fBopt\fP performs various analyses of the input source. It will usually print the results on standard output, but in a few cases, it will print output to standard error or generate a file with the analysis output, which is usually done when the output is meant for another program. .sp -While \fI\-analyze\fP is \fInot\fP given, \fBopt\fP attempts to produce an +While \fB\-analyze\fP is \fInot\fP given, \fBopt\fP attempts to produce an optimized output file. The optimizations available via \fBopt\fP depend upon what libraries were linked into it as well as any additional libraries that have been loaded with the \fI\%\-load\fP option. Use the \fI\%\-help\fP @@ -99,21 +99,21 @@ This option simply removes the inlining pass from the standard list. .INDENT 0.0 .TP .B \-disable\-opt -This option is only meaningful when \fI\-std\-link\-opts\fP is given. It +This option is only meaningful when \fB\-std\-link\-opts\fP is given. It disables most passes. .UNINDENT .INDENT 0.0 .TP .B \-strip\-debug This option causes opt to strip debug information from the module before -applying other optimizations. It is essentially the same as \fI\-strip\fP +applying other optimizations. It is essentially the same as \fB\-strip\fP but it ensures that stripping of debug information is done first. .UNINDENT .INDENT 0.0 .TP .B \-verify\-each This option causes opt to add a verify pass after every pass otherwise -specified on the command line (including \fI\-verify\fP). This is useful +specified on the command line (including \fB\-verify\fP). This is useful for cases where it is suspected that a pass is creating an invalid module but it is not clear which pass is doing it. .UNINDENT @@ -165,6 +165,6 @@ occurs, it will exit with a non\-zero value. .SH AUTHOR Maintained by The LLVM Team (http://llvm.org/). .SH COPYRIGHT -2003-2014, LLVM Project +2003-2016, LLVM Project .\" Generated by docutils manpage writer. . |