Quote:
Originally Posted by Kevin Watson
The linker won't create the section if no temp storage is needed. Try enabling one of the interrupts and put this code in the interrupt service routine:
int a = 2;
int b = 3;
int c = 4;
int d;
d = (a + b + c) - (c + a);
Compile and then look at the .map file.
-Kevin
|
Well in ver 3.10 of the compiler the .map file will NOT show an entry if there is no storage needed, but 3.15 will show a null entry. (as it should)