I am using MSP430F5419 which uses the BIG memory model. I upgraded from very old Code Composer 3.0 to 6.0 and CC6 produces the #770-D warning for the line of code below.
__data16_write_addr((unsigned short) &DMA1SA, (unsigned long) &.buffer[1] );
'buffer' is in RAM so it is in low memory and both CC3.0 and CC6.0 produced code that works.
How do I get rid of the warning?