summaryrefslogtreecommitdiffstats
path: root/Tests/GhsMultiDuplicateSourceFilenames/main.c
diff options
context:
space:
mode:
authorGeoff Viola <geoffrey.viola@asirobots.com>2016-04-24 19:47:48 (GMT)
committerBrad King <brad.king@kitware.com>2016-04-25 14:46:09 (GMT)
commit1703a6d2c46cc7981dd80bd18d7c2e82ec5d9f82 (patch)
tree5b839beb4d5ca5aeaccccd4c42ea623a629e9470 /Tests/GhsMultiDuplicateSourceFilenames/main.c
parent657a446175c1b61999a77958c5b7480f8be041a5 (diff)
downloadCMake-1703a6d2c46cc7981dd80bd18d7c2e82ec5d9f82.zip
CMake-1703a6d2c46cc7981dd80bd18d7c2e82ec5d9f82.tar.gz
CMake-1703a6d2c46cc7981dd80bd18d7c2e82ec5d9f82.tar.bz2
GHS: Fix handling of duplicate source filenames (#16046)
Green Hills MULTI project files must specify explicitly distinct object file names for source files with the same name.
Diffstat (limited to 'Tests/GhsMultiDuplicateSourceFilenames/main.c')
-rw-r--r--Tests/GhsMultiDuplicateSourceFilenames/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/GhsMultiDuplicateSourceFilenames/main.c b/Tests/GhsMultiDuplicateSourceFilenames/main.c
new file mode 100644
index 0000000..2779d68
--- /dev/null
+++ b/Tests/GhsMultiDuplicateSourceFilenames/main.c
@@ -0,0 +1,9 @@
+int test_a(void);
+int test_b(void);
+
+int main(int argc, char *argv[])
+{
+ test_a();
+ test_b();
+ return 0;
+}