.comm

Name

comm -- 

Synopsis

.comm symbol, length

Description

.comm declares a named common area in the bss section. Normally the linker reserves memory addresses for it during linking, so no partial program defines the location of the symbol. Use .comm to tell the linker that it must be at least length bytes long. The linker allocates space for each .comm symbol that is at least as long as the longest .comm request in any of the partial programs linked. length is an absolute expression.