diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-09 04:15:08 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-09 04:15:08 +0000 |
commit | 7ff39512a294c0a43ae43b33f5eb6f2f09771419 (patch) | |
tree | 4c849d0cbe1e67b0445a39964740a5709aa278de /llvm/docs/CommandGuide/llvm-ld.pod | |
parent | ddef5ab07492e96d2e53c04e84f8cd168ee4ebb9 (diff) | |
download | bcm5719-llvm-7ff39512a294c0a43ae43b33f5eb6f2f09771419.tar.gz bcm5719-llvm-7ff39512a294c0a43ae43b33f5eb6f2f09771419.zip |
Fix some formatting mistakes.
llvm-svn: 34080
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-ld.pod')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-ld.pod | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/llvm/docs/CommandGuide/llvm-ld.pod b/llvm/docs/CommandGuide/llvm-ld.pod index afeefa9b1a9..5f2e065231c 100644 --- a/llvm/docs/CommandGuide/llvm-ld.pod +++ b/llvm/docs/CommandGuide/llvm-ld.pod @@ -71,6 +71,8 @@ and running the system compiler (typically gcc) on the result. =head2 General Options +=over + =item B<-help> Print a summary of command line options. @@ -89,6 +91,8 @@ Print statistics. Record the amount of time needed for each pass and print it to standard error. +=back + =head2 Input/Output Options =over @@ -242,16 +246,11 @@ first argument. The second argument to the program will be the name of a temporary file into which the program should place its optimized output. For example, the "no-op optimization" would be a simple shell script: -=over - -#!/bin/bash -cp $1 $2 - -=back + #!/bin/bash + cp $1 $2 =back - =head1 EXIT STATUS If B<llvm-ld> succeeds, it will exit with 0 return code. If an error occurs, |