register

register declarator

The register keyword specifies that the variable is to be stored in a machine register, if possible.

The 32-bit compiler does not honor user requests for register variables. Instead it makes its own register choices when global optimizations are on. However, all other semantics associated with the register keyword are honored by the 32-bit compiler.

For more information, see auto, extern, and static.