diff options
author | Aaron Watry <awatry@gmail.com> | 2013-04-15 18:46:41 -0500 |
---|---|---|
committer | Aaron Watry <awatry@gmail.com> | 2013-04-15 18:46:41 -0500 |
commit | ec9f7b9e25a3cbc8aa6087b0dbd11b68b333c8bf (patch) | |
tree | 23a700083e2fc78bd536b12d4770ac0714c6ed98 | |
parent | 1d4866ce7d9e38628d25297b9369fee6e945a108 (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.
-rw-r--r-- | generic/lib/SOURCES | 4 | ||||
-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 |
3 files changed, 2 insertions, 2 deletions
diff --git a/generic/lib/SOURCES b/generic/lib/SOURCES index 18c8afb..eac6c60 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 |