diff options
author | Brad King <brad.king@kitware.com> | 2024-02-12 15:57:09 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-02-12 15:57:18 (GMT) |
commit | 4977739fc978a0480fc1cde3f03a88a083e955a5 (patch) | |
tree | 7dc1726c205cfc722f308f7751eed4ed9a863fa5 /Tests/RunCMake/TIClang/module.cxx | |
parent | f3acc9b1ceb151c1b85574b5ea2fcf8c6d810225 (diff) | |
parent | 4c51136b8c345adffc4052eb5bd70978d8bc903e (diff) | |
download | CMake-4977739fc978a0480fc1cde3f03a88a083e955a5.zip CMake-4977739fc978a0480fc1cde3f03a88a083e955a5.tar.gz CMake-4977739fc978a0480fc1cde3f03a88a083e955a5.tar.bz2 |
Merge topic 'ticlang-compilers' into release-3.29
4c51136b8c ci: Enable TIClang test on Debian Clang jobs in nightly pipeline
9ba0a54554 TIClang: Add support for TI Clang-based compilers, including tiarmclang
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9228
Diffstat (limited to 'Tests/RunCMake/TIClang/module.cxx')
-rw-r--r-- | Tests/RunCMake/TIClang/module.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/TIClang/module.cxx b/Tests/RunCMake/TIClang/module.cxx new file mode 100644 index 0000000..b4d46b1 --- /dev/null +++ b/Tests/RunCMake/TIClang/module.cxx @@ -0,0 +1,7 @@ +#include "module.h" +int i; +int main() +{ + i = INTERNAL; + return i; +} |