diff options
author | Jan Vesely <jan.vesely@rutgers.edu> | 2016-06-17 20:30:49 +0000 |
---|---|---|
committer | Jan Vesely <jan.vesely@rutgers.edu> | 2016-06-17 20:30:49 +0000 |
commit | 5fd84d028dd53ce9c3f5c684b400d04c9c23b6b6 (patch) | |
tree | 70291fd4925fb7c224d1ed01b766ee9695aa24c1 /libclc/configure.py | |
parent | 3317f253de652805995d1af2794d3b075a26b918 (diff) | |
download | bcm5719-llvm-5fd84d028dd53ce9c3f5c684b400d04c9c23b6b6.tar.gz bcm5719-llvm-5fd84d028dd53ce9c3f5c684b400d04c9c23b6b6.zip |
nvptx: Drop feature defines.
This is now handled by clang
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
Reviewed-by: Tom Stellard <tom@stellard.net>
llvm-svn: 273043
Diffstat (limited to 'libclc/configure.py')
-rwxr-xr-x | libclc/configure.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libclc/configure.py b/libclc/configure.py index 43ab69d9a38..1cb3371f4c0 100755 --- a/libclc/configure.py +++ b/libclc/configure.py @@ -105,14 +105,12 @@ available_targets = { 'amdgcn--amdhsa': { 'devices' : [{'gpu' : '', 'aliases' : ['bonaire', 'hawaii', 'kabini', 'kaveri', 'mullins', 'carrizo', 'stoney', 'fiji', 'iceland', 'tonga'], 'defines' : {}} ]}, - 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : [], - 'defines' : {'all' : ['cl_khr_fp64']}}]}, - 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : [], - 'defines' : {'all' : ['cl_khr_fp64']}}]}, + 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]}, + 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]}, 'nvptx--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [], - 'defines' : {'all' : ['cl_khr_fp64']}}]}, + 'defines' : {}} ]}, 'nvptx64--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [], - 'defines' : {'all' : ['cl_khr_fp64']}}]}, + 'defines' : {}} ]}, } default_targets = ['nvptx--nvidiacl', 'nvptx64--nvidiacl', 'r600--', 'amdgcn--', 'amdgcn--amdhsa'] |