This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320C6746: Alignment

Part Number: TMS320C6746

Hi all.
I've been working on a new project.
I have multiple variables defined and in use.
The order of these variables is important.
For example, I define the following variables
long dat;
tbl[10];
After compilation, "tbl[10]" will be assigned to an address that is a multiple of 8, and there will be unnecessary data between "dat" and "tbl[10]".
How can I get rid of this phenomenon?

Thank you very much.
Suzuki