Forces minimum alignment of all objects in the current segment to the specified value.
ALIGNALL(alignValue);
alignValue
Alignment-value specifier; must be a power of two.
ALIGNALL is the command version of the ALIGN function. It updates the location counter as each object is written to the output.
The following listing is an example use for ALIGNALL() command.
.code : { ALIGNALL(16); // Align code on 16-byte boundary * (.init) * (.text) ALIGNALL(64); //align data on 64-byte boundary * (.rodata) } > .text