I got in one of my c functions that function call are not allowed no accelerator region generated.
I had the option -Minline=func1,func2 in my compile script.
When I ran it I got the function that were being inlined had function calls themselves.
I then changed it to -Minline=func1,func2,levels:2 .
I thought this would inline to two levesl and take cae of the problem. It did not.and I still got the error. The function that are being inline themselves have function calls and that creates an issue.
The use of -Minline=func1,func2,levels:2 . does not solve it.
What am I doing wrong?
Thanks in advance.
Newport_j