From: Segher Boessenkool Date: Mon, 16 Jul 2018 23:00:03 +0000 (+0200) Subject: rs6000: Use more correct names for some trunc/extend libcalls X-Git-Tag: basepoints/gcc-10~5318 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d06bc72fae490fbec159ccd6952c633d57e0d10;p=thirdparty%2Fgcc.git rs6000: Use more correct names for some trunc/extend libcalls They had source and destination swapped in the name. * config/rs6000/rs6000.c (init_float128_ibm): Use more correct names for the conversions between TDmode and IFmode. (init_float128_ieee): Use more correct names for the conversions between TDmode and KFmode. From-SVN: r262752 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f09e49c7fd9b..f032fcd789a0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2018-07-16 Segher Boessenkool + + * config/rs6000/rs6000.c (init_float128_ibm): Use more correct names + for the conversions between TDmode and IFmode. + (init_float128_ieee): Use more correct names for the conversions + between TDmode and KFmode. + 2018-07-16 Jakub Jelinek PR tree-optimization/86526 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 197607214ff5..f95aa59b116a 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -17849,10 +17849,10 @@ init_float128_ibm (machine_mode mode) { set_conv_libfunc (sext_optab, mode, SDmode, "__dpd_extendsdtf2"); set_conv_libfunc (sext_optab, mode, DDmode, "__dpd_extendddtf2"); - set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunctftd2"); + set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunctdtf2"); set_conv_libfunc (trunc_optab, SDmode, mode, "__dpd_trunctfsd2"); set_conv_libfunc (trunc_optab, DDmode, mode, "__dpd_trunctfdd2"); - set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendtdtf2"); + set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendtftd2"); if (TARGET_POWERPC64) { @@ -17953,10 +17953,10 @@ init_float128_ieee (machine_mode mode) set_conv_libfunc (sext_optab, mode, SDmode, "__dpd_extendsdkf2"); set_conv_libfunc (sext_optab, mode, DDmode, "__dpd_extendddkf2"); - set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunckftd2"); + set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunctdkf2"); set_conv_libfunc (trunc_optab, SDmode, mode, "__dpd_trunckfsd2"); set_conv_libfunc (trunc_optab, DDmode, mode, "__dpd_trunckfdd2"); - set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendtdkf2"); + set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendkftd2"); set_conv_libfunc (sfix_optab, SImode, mode, "__fixkfsi"); set_conv_libfunc (ufix_optab, SImode, mode, "__fixunskfsi");