2004-06-02 22:29:49 +02:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
llvm-as - LLVM assembler
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2004-07-02 18:06:19 +02:00
|
|
|
B<llvm-as> [I<options>] [I<filename>]
|
2004-06-02 22:29:49 +02:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2004-11-15 21:39:30 +01:00
|
|
|
B<llvm-as> is the LLVM assembler. It reads a file containing human-readable
|
2007-07-09 13:24:05 +02:00
|
|
|
LLVM assembly language, translates it to LLVM bitcode, and writes the result
|
2004-11-15 21:39:30 +01:00
|
|
|
into a file or to standard output.
|
2004-06-02 22:29:49 +02:00
|
|
|
|
|
|
|
If F<filename> is omitted or is C<->, then B<llvm-as> reads its input from
|
|
|
|
standard input.
|
|
|
|
|
|
|
|
If an output file is not specified with the B<-o> option, then
|
|
|
|
B<llvm-as> sends its output to a file or standard output by following
|
|
|
|
these rules:
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
If the input is standard input, then the output is standard output.
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
If the input is a file that ends with C<.ll>, then the output file is of
|
|
|
|
the same name, except that the suffix is changed to C<.bc>.
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
If the input is a file that does not end with the C<.ll> suffix, then the
|
|
|
|
output file has the same name as the input file, except that the C<.bc>
|
|
|
|
suffix is appended.
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item B<-f>
|
|
|
|
|
2009-08-25 17:54:01 +02:00
|
|
|
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.
|
2004-06-02 22:29:49 +02:00
|
|
|
|
|
|
|
=item B<--help>
|
|
|
|
|
|
|
|
Print a summary of command line options.
|
|
|
|
|
|
|
|
=item B<-o> F<filename>
|
|
|
|
|
|
|
|
Specify the output file name. If F<filename> is C<->, then B<llvm-as>
|
|
|
|
sends its output to standard output.
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXIT STATUS
|
|
|
|
|
|
|
|
If B<llvm-as> succeeds, it will exit with 0. Otherwise, if an error
|
|
|
|
occurs, it will exit with a non-zero value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2004-07-02 18:06:19 +02:00
|
|
|
L<llvm-dis|llvm-dis>, L<gccas|gccas>
|
2004-06-02 22:29:49 +02:00
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
2006-03-14 06:42:07 +01:00
|
|
|
Maintained by the LLVM Team (L<http://llvm.org>).
|
2004-06-02 22:29:49 +02:00
|
|
|
|
|
|
|
=cut
|