summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-06-26 18:21:31 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-06-26 18:21:31 +0000
commit547d4512a5515de8dbbe433a4502f2e0ff20fce5 (patch)
tree1dd89c807f338a95132d09315685c09301275b12
parent7a2f843ed11f41c55b94c57769e9987457979cf0 (diff)
libclc: Rename [add|sub]_sat.ll to [add|sub]_sat_if.ll
configure.py allows overloading *.cl with *.ll, but will only ever build the first file listed in SOURCES of ${file}.cl and ${file}.ll add_sat, sub_sat, (and the soon to be submitted clz) all define interfaces in ${function_name}.ll which are implemented in ${function_name}_impl.ll. Renaming the interface files is enough to get them to build again, fixing CL usage of these functions. Tested on clover/r600g. Patch by: Aaron Watry git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@185000 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--generic/lib/SOURCES4
-rw-r--r--generic/lib/integer/add_sat_if.ll (renamed from generic/lib/integer/add_sat.ll)0
-rw-r--r--generic/lib/integer/sub_sat_if.ll (renamed from generic/lib/integer/sub_sat.ll)0
-rw-r--r--ptx/lib/OVERRIDES2
4 files changed, 4 insertions, 2 deletions
diff --git a/generic/lib/SOURCES b/generic/lib/SOURCES
index 495b3e7..7f27ec4 100644
--- a/generic/lib/SOURCES
+++ b/generic/lib/SOURCES
@@ -6,11 +6,11 @@ geometric/normalize.cl
integer/abs.cl
integer/abs_diff.cl
integer/add_sat.cl
-integer/add_sat.ll
+integer/add_sat_if.ll
integer/add_sat_impl.ll
integer/rotate.cl
integer/sub_sat.cl
-integer/sub_sat.ll
+integer/sub_sat_if.ll
integer/sub_sat_impl.ll
math/fmax.cl
math/fmin.cl
diff --git a/generic/lib/integer/add_sat.ll b/generic/lib/integer/add_sat_if.ll
index bcbe4c0..bcbe4c0 100644
--- a/generic/lib/integer/add_sat.ll
+++ b/generic/lib/integer/add_sat_if.ll
diff --git a/generic/lib/integer/sub_sat.ll b/generic/lib/integer/sub_sat_if.ll
index 7252574..7252574 100644
--- a/generic/lib/integer/sub_sat.ll
+++ b/generic/lib/integer/sub_sat_if.ll
diff --git a/ptx/lib/OVERRIDES b/ptx/lib/OVERRIDES
new file mode 100644
index 0000000..475162c
--- /dev/null
+++ b/ptx/lib/OVERRIDES
@@ -0,0 +1,2 @@
+integer/add_sat_if.ll
+integer/sub_sat_if.ll