Whole document tree
4.34 Controlling Names Used in Assembler Code
You can specify the name to be used in the assembler code for a C
function or variable by writing the
This specifies that the name to be used for the variable On systems where an underscore is normally prepended to the name of a C function or variable, this feature allows you to define names for the linker that do not start with an underscore.
You cannot use
It is up to you to make sure that the assembler names you choose do not conflict with any other assembler symbols. Also, you must not use a register name; that would produce completely invalid assembler code. GNU CC does not as yet have the ability to store static variables in registers. Perhaps that will be added. This document was generated by root on January, 30 2002 using texi2html |