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.
I have a construct similar to below which compiles fine if including the header file in the C file, but if the same file is included as header file in CPP, ac2000.exe gets into segmentation fault (refer to the snapshot)
I am using C2000 18.12.3 LTS Compiler, tried the same with the latest C2000 compiler as well. Still the segmentation fault occurs.
#define functionmacro(datatype, value1)
({
datatype return_value;
if (value1 = 1)
{
return_value = value1;
}
else if (value1 = 2)
{
return_value = value1+2;
}
else
{
return_value = value1 - 2;
}
return_value;
})
Thank you for notifying us of this problem, and for supplying a concise test case. I am able to reproduce the same behavior. I filed EXT_EP-10674 to have this investigated. You are welcome to follow it with that link.
Thanks and regards,
-George