summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CompilerLauncher/test.ispc
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2020-08-07 16:33:31 (GMT)
committerBrad King <brad.king@kitware.com>2020-09-03 15:46:11 (GMT)
commit5a1750017e65727660167ae1953746a3fd3d2c7b (patch)
tree5a5361794d3b7ae926c23e0efec1b3601963319f /Tests/RunCMake/CompilerLauncher/test.ispc
parentca5babfd7a1da8e32f927ad086fdd91c2b09853b (diff)
downloadCMake-5a1750017e65727660167ae1953746a3fd3d2c7b.zip
CMake-5a1750017e65727660167ae1953746a3fd3d2c7b.tar.gz
CMake-5a1750017e65727660167ae1953746a3fd3d2c7b.tar.bz2
ISPC: Add compiler launcher support
Diffstat (limited to 'Tests/RunCMake/CompilerLauncher/test.ispc')
-rw-r--r--Tests/RunCMake/CompilerLauncher/test.ispc4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/CompilerLauncher/test.ispc b/Tests/RunCMake/CompilerLauncher/test.ispc
new file mode 100644
index 0000000..b061f40
--- /dev/null
+++ b/Tests/RunCMake/CompilerLauncher/test.ispc
@@ -0,0 +1,4 @@
+
+float func(float a, float b) {
+ return a + b / 2.;
+}