give StringMap a new ctor which allows you to initialize it
[oota-llvm.git] / docs / CommandGuide / llvm-as.pod
index 55cfba5851d941848551645fa50ab14e7e203098..185c009698f372097bc9feffe49d43b45142b762 100644 (file)
@@ -6,13 +6,13 @@ llvm-as - LLVM assembler
 
 =head1 SYNOPSIS
 
-llvm-as [options] [filename]
+B<llvm-as> [I<options>] [I<filename>]
 
 =head1 DESCRIPTION
 
-The B<llvm-as> command invokes the LLVM assembler.  It reads a file containing
-human-readable LLVM assembly language, translates it to LLVM bytecode, and
-writes the result into a file or to standard output.
+B<llvm-as> is the LLVM assembler.  It reads a file containing human-readable
+LLVM assembly language, translates it to LLVM bitcode, and writes the result
+into a file or to standard output.
 
 If F<filename> is omitted or is C<->, then B<llvm-as> reads its input from
 standard input.
@@ -46,11 +46,11 @@ suffix is appended.
 
 =item B<-f>
 
-Force overwrite.  Normally, B<llvm-as> will refuse to overwrite an
-output file that already exists.  With this option, B<llvm-as>
-will overwrite the output file and replace it with new bytecode.
+Enable binary output on terminals.  Normally, B<llvm-as> will refuse to
+write raw bitcode output if the output stream is a terminal. With this option,
+B<llvm-as> will write raw bitcode regardless of the output device.
 
-=item B<--help>
+=item B<-help>
 
 Print a summary of command line options.
 
@@ -59,15 +59,6 @@ Print a summary of command line options.
 Specify the output file name.  If F<filename> is C<->, then B<llvm-as>
 sends its output to standard output.
 
-=item B<--stats>
-
-Print statistics.
-
-=item B<--time-passes>
-
-Record the amount of time needed for each pass and print it to standard
-error.
-
 =back
 
 =head1 EXIT STATUS
@@ -77,11 +68,10 @@ occurs, it will exit with a non-zero value.
 
 =head1 SEE ALSO
 
-L<llvm-dis>, L<gccas>
+L<llvm-dis|llvm-dis>, L<gccas|gccas>
 
 =head1 AUTHORS
 
-Maintained by the LLVM Team (L<http://llvm.cs.uiuc.edu>).
+Maintained by the LLVM Team (L<http://llvm.org>).
 
 =cut
-