Hi TI,
I am new to C6000 compiler.
I am trying to port some code from Windows platform to C64x+ DSP platform.
The C6000 compiler gives this error : error #20: identifier "alloca" is undefined
In my source file, there is this below definition :
#define cvStackAlloc(size) cvAlignPtr( alloca((size) + CV_MALLOC_ALIGN), CV_MALLOC_ALIGN )
What is the equivalent "alloca" function in C6000 compiler to replace the above "alloca" ?
Thanks,
Mr Tan