LLVM: gccas tool


NAME

gccas

SYNOPSIS

gccas [options] < filename>

DESCRIPTION

The gccas utility takes an LLVM assembly file generated by GCC and converts it into an LLVM bytecode file. It is primarily used by the GCC front end, and as such, attempts to mimic the interface provided by the default system assembler so that it can act as a "drop-in" replacement.

OPTIONS

EXIT STATUS

If gccas succeeds, it will exit with 0. Otherwise, if an error occurs, it will exit with a non-zero value.

SEE ALSO

llvm-dis
LLVM Team