summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Watry <awatry@gmail.com>2013-04-15 18:42:04 -0500
committerAaron Watry <awatry@gmail.com>2013-04-15 18:42:04 -0500
commita0df0a0e86c55c1bdc0b9c0f5a739e5adef4b056 (patch)
tree6ddcc17ce00c34348cb0edccd6e16b56a7c801e4
parent931b62bed05c58f737de625bd415af09571a6a5a (diff)
libclc: Rename clz.ll to clz_if.ll to ensure it gets built.clz
configure.py treats files that have the same name with the .cl and .ll extensions as overriding eachother. E.g. If you have clz.cl and clz.ll both specified to be built in the same SOURCES file, only the first file listed will actually be built. Since the contents of clz.ll were an interface that is implemented in clz_impl.ll, rename clz.ll to clz_if.ll to make sure that the interface is built.
-rw-r--r--generic/lib/SOURCES2
-rw-r--r--generic/lib/integer/clz_if.ll (renamed from generic/lib/integer/clz.ll)0
2 files changed, 1 insertions, 1 deletions
diff --git a/generic/lib/SOURCES b/generic/lib/SOURCES
index 4aeb85c..b04d3b8 100644
--- a/generic/lib/SOURCES
+++ b/generic/lib/SOURCES
@@ -9,7 +9,7 @@ integer/add_sat.cl
integer/add_sat.ll
integer/add_sat_impl.ll
integer/clz.cl
-integer/clz.ll
+integer/clz_if.ll
integer/clz_impl.ll
integer/rotate.cl
integer/sub_sat.cl
diff --git a/generic/lib/integer/clz.ll b/generic/lib/integer/clz_if.ll
index 23dfc74..23dfc74 100644
--- a/generic/lib/integer/clz.ll
+++ b/generic/lib/integer/clz_if.ll