Tool/software: TI C/C++ Compiler
Dear TI Team,
in our linker script we are using something like that:
DUMMY_SECTION: fill=FILL_PATTERN, align=4, load > DUMMY
{
.=align(4);
*(DUMMY_SECTION)
.=align(4);
}
This section contains some global variables, but these variables inside this section are not placed with a 32-bit alignment in ram. Is a special linker setting required?
If we use #pragma DATA_ALIGN(variable_in_section, 4) it works.
Regards,
Sergej