diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-06-26 18:21:31 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-06-26 18:21:31 +0000 |
commit | 547d4512a5515de8dbbe433a4502f2e0ff20fce5 (patch) | |
tree | 1dd89c807f338a95132d09315685c09301275b12 /ptx/lib/OVERRIDES | |
parent | 7a2f843ed11f41c55b94c57769e9987457979cf0 (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
Diffstat (limited to 'ptx/lib/OVERRIDES')
-rw-r--r-- | ptx/lib/OVERRIDES | 2 |
1 files changed, 2 insertions, 0 deletions
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 |