Files
CMake/Tests/RunCMake/TIClang/module.c
Alan Phipps 9ba0a54554 TIClang: Add support for TI Clang-based compilers, including tiarmclang
Add TIClang compiler ID and support in compiler modules.  Update
documentation.  Add rudimentary RunCMake test for TIClang to test
basic functionality.

Fixes: #24619
2024-02-09 15:54:40 -05:00

15 lines
195 B
C

#include "module.h"
#if defined(__USE_LIBFUN)
extern int ticlang_libfun();
#endif
int i;
int main()
{
#if defined(__USE_LIBFUN)
i = ticlang_libfun();
#else
i = INTERNAL;
#endif
return i;
}