Tool/software:
If I define a CLA function as:
static inline __attribute__((always_inline)) void MyFunction(void)
{
code here
}
will the CLA compiler recognize this and inline the function?
Thanks in advance for any insight.
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.
Tool/software:
If I define a CLA function as:
static inline __attribute__((always_inline)) void MyFunction(void)
{
code here
}
will the CLA compiler recognize this and inline the function?
Thanks in advance for any insight.
Hi Andrew,
Based on the C28x compiler guide, I believe the compiler will recognize it.

You can also try it out stepping through the disassembly to see if there are any branch instructions being executed.
Best Regards,
Delaney