Non-Confidential |
![]() |
ARM DUI0472J | ||
|
||||
Home > Language Extensions > Address of a register variable |
The address of a variable with register
storage class can be taken.
The compiler generates a warning if you take the address of a variable with
register
storage class.
void foo(void) { register int i; int *j = &i; }