zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / docs / CommandGuide / llvm-as.pod
blob185c009698f372097bc9feffe49d43b45142b762
1 =pod
3 =head1 NAME
5 llvm-as - LLVM assembler
7 =head1 SYNOPSIS
9 B<llvm-as> [I<options>] [I<filename>]
11 =head1 DESCRIPTION
13 B<llvm-as> is the LLVM assembler.  It reads a file containing human-readable
14 LLVM assembly language, translates it to LLVM bitcode, and writes the result
15 into a file or to standard output.
17 If F<filename> is omitted or is C<->, then B<llvm-as> reads its input from
18 standard input.
20 If an output file is not specified with the B<-o> option, then
21 B<llvm-as> sends its output to a file or standard output by following
22 these rules:
24 =over 
26 =item *
28 If the input is standard input, then the output is standard output.
30 =item *
32 If the input is a file that ends with C<.ll>, then the output file is of
33 the same name, except that the suffix is changed to C<.bc>.
35 =item *
37 If the input is a file that does not end with the C<.ll> suffix, then the
38 output file has the same name as the input file, except that the C<.bc>
39 suffix is appended.
41 =back
43 =head1 OPTIONS
45 =over
47 =item B<-f>
49 Enable binary output on terminals.  Normally, B<llvm-as> will refuse to
50 write raw bitcode output if the output stream is a terminal. With this option,
51 B<llvm-as> will write raw bitcode regardless of the output device.
53 =item B<-help>
55 Print a summary of command line options.
57 =item B<-o> F<filename>
59 Specify the output file name.  If F<filename> is C<->, then B<llvm-as>
60 sends its output to standard output.
62 =back
64 =head1 EXIT STATUS
66 If B<llvm-as> succeeds, it will exit with 0.  Otherwise, if an error
67 occurs, it will exit with a non-zero value.
69 =head1 SEE ALSO
71 L<llvm-dis|llvm-dis>, L<gccas|gccas>
73 =head1 AUTHORS
75 Maintained by the LLVM Team (L<http://llvm.org>).
77 =cut