From 3e22c198adfb10614cd7455b97596f5222e2035d Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Sun, 15 Dec 2019 09:08:25 +0100 Subject: cgcc: rename 'ppc64+{be,le}' to 'ppc64{be,le}' The spec names 'ppc64+{be,le}' had the '+' to force them to be internal names but are also useful as external names (it helps to make systematic testing of the arch-specific code). So rename them to 'ppc64{be,le}'. Signed-off-by: Luc Van Oostenryck --- cgcc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cgcc b/cgcc index fc6f50f1..9c6ad883 100755 --- a/cgcc +++ b/cgcc @@ -286,9 +286,9 @@ sub add_specs { return ( ' --arch=ppc64' . &float_types (1, 1, 21, [24,8], [53,11], [113,15])); - } elsif ($spec eq 'ppc64+be') { + } elsif ($spec eq 'ppc64be') { return &add_specs ('ppc64') . ' -mbig-endian -D_CALL_ELF=1'; - } elsif ($spec eq 'ppc64+le') { + } elsif ($spec eq 'ppc64le') { return &add_specs ('ppc64') . ' -mlittle-endian -D_CALL_ELF=2'; } elsif ($spec eq 's390x') { return (' -D_BIG_ENDIAN' . @@ -328,7 +328,7 @@ sub add_specs { } elsif ($gccmachine =~ '^i[23456]86-') { return &add_specs ('i386'); } elsif ($gccmachine =~ '^(powerpc|ppc)64le-') { - return &add_specs ('ppc64+le'); + return &add_specs ('ppc64le'); } elsif ($gccmachine =~ '^s390x-') { return &add_specs ('s390x'); } elsif ($gccmachine eq 'x86_64-linux-gnux32') { @@ -353,9 +353,9 @@ sub add_specs { } elsif ($arch =~ /^(ppc)$/i) { return &add_specs ('ppc'); } elsif ($arch =~ /^(ppc64)$/i) { - return &add_specs ('ppc64+be'); + return &add_specs ('ppc64be'); } elsif ($arch =~ /^(ppc64le)$/i) { - return &add_specs ('ppc64+le'); + return &add_specs ('ppc64le'); } elsif ($arch =~ /^(s390x)$/i) { return &add_specs ('s390x'); } elsif ($arch =~ /^(sparc64)$/i) { -- cgit 1.2.3-korg