diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ef851ef84626..85d1c2b6f758 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2020-04-29 Thomas Schwinge + * configure.ac <$enable_offload_targets>: 'amdgcn' is 'gcn'. + * configure: Regenerate. + PR target/94279 * rtlanal.c (set_noop_p): Handle non-constant selectors. diff --git a/gcc/configure b/gcc/configure index 9e22c5a286f6..83101072aea0 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7924,7 +7924,7 @@ for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do omp_device_property=omp-device-properties-i386 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/i386/t-omp-device" ;; - gcn*-*) + amdgcn*-*) omp_device_property=omp-device-properties-gcn omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/gcn/t-omp-device" ;; diff --git a/gcc/configure.ac b/gcc/configure.ac index cd62312b813c..b604047ae456 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1049,7 +1049,7 @@ for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do omp_device_property=omp-device-properties-i386 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/i386/t-omp-device" ;; - gcn*-*) + amdgcn*-*) omp_device_property=omp-device-properties-gcn omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/gcn/t-omp-device" ;;