If I want to use macro in my c code to guard specific parts based on the compiler like the following:
#if defined (__GNUC__)
...
#else
..
What is the macro already defined for TIARMCLANG compiler ?
I tried __TI_ARM_CLANG__ but seems is not working.