Tool/software: Code Composer Studio
// Wierd? // the text "bar" does not appear in the .map, although storage seems to be allocated in TI.persistent segment anonymously at 0xC400 #pragma PERSISTENT static int bar=1; // Normal // text "zed" appears in .map, and storage seems to be in TI.persistent segment at 0xC402 #pragma PERSISTENT int zed=2;
It is not a big problem. Just something I noticed while chasing another issue. Is there a reason that the symbol bar is not in the .map file?