Hi all,
I have a C6000 program that makes function calls to some DSPLIB and MATHLIB functions inside a loop. According to the performance advisor, these calls prevent the loop from beeing optimized, so I tried to inline the functions (code size is not critical for now, but performance is).
How can I inline these library functions? I use compiler switches -O3, -mf5, --single_inline and played a bit with the --auto_inline parameter, but the compiler seems to resist to inline the calls.
Can you give me some hints how to use inlining here?
Thanks a lot,
Marcus