Part Number: TMS320F280037
Tool/software:
Hello, TI experts
I have met one tricky issue when enable CLA core, the CLA code obj file was very big(2-4k) even if there only have 1-2 hundred lines code. I was used CCS to compile this project, and try to use -O1 -O2 optimze flag, But it's helpless.
I have found the RC about why met that issues.i.e. function call global parameters.
dummy code:
float a=0;
void function(void)
{
float b=0;
b = a; // This line will use 70-80B PRAM space
}
So do you know why it will use lots of PRAM memory and how to fix it issue, .i.e. change compiler version, optimze level, code optimze?