From: Segher Boessenkool Date: Tue, 11 Feb 2020 02:20:56 +0000 (+0000) Subject: rs6000: Use strlen instead of sizeof - 1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9e067f98b0c4f57d8acd60526b6fa11a1d109e5;p=gcc.git rs6000: Use strlen instead of sizeof - 1 It is easier to read and understand strlen ("string") than it is to read and understand sizeof ("string") - 1 . * config/rs6000/rs6000.c (rs6000_debug_print_mode): Don't use sizeof where strlen is more legible. (rs6000_builtin_vectorized_libmass): Ditto. (rs6000_print_options_internal): Ditto. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2f6dbdc13ba..3ff66205a99 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2020-02-12 Segher Boessenkool + + * config/rs6000/rs6000.c (rs6000_debug_print_mode): Don't use sizeof + where strlen is more legible. + (rs6000_builtin_vectorized_libmass): Ditto. + (rs6000_print_options_internal): Ditto. + 2020-02-11 Martin Sebor PR tree-optimization/93683 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index cf73e113e6d..4c1c0e93a9b 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -2135,7 +2135,7 @@ rs6000_debug_print_mode (ssize_t m) spaces = 0; } else - spaces += sizeof (" Reload=sl") - 1; + spaces += strlen (" Reload=sl"); if (reg_addr[m].scalar_in_vmx_p) { @@ -2143,7 +2143,7 @@ rs6000_debug_print_mode (ssize_t m) spaces = 0; } else - spaces += sizeof (" Upper=y") - 1; + spaces += strlen (" Upper=y"); if (rs6000_vector_unit[m] != VECTOR_NONE || rs6000_vector_mem[m] != VECTOR_NONE) @@ -5206,7 +5206,7 @@ rs6000_builtin_vectorized_libmass (combined_fn fn, tree type_out, if (!bname) return NULL_TREE; - strcpy (name, bname + sizeof ("__builtin_") - 1); + strcpy (name, bname + strlen ("__builtin_")); strcat (name, suffix); if (n_args == 1) @@ -23547,7 +23547,7 @@ rs6000_print_options_internal (FILE *file, if ((flags & mask) == 0) { no_str = "no-"; - len += sizeof ("no-") - 1; + len += strlen ("no-"); } flags &= ~mask; @@ -23558,7 +23558,7 @@ rs6000_print_options_internal (FILE *file, if ((flags & mask) != 0) { no_str = "no-"; - len += sizeof ("no-") - 1; + len += strlen ("no-"); } flags |= mask; @@ -23574,7 +23574,7 @@ rs6000_print_options_internal (FILE *file, fprintf (file, "%s%s%s%s", comma, prefix, no_str, name); comma = ", "; - comma_len = sizeof (", ") - 1; + comma_len = strlen (", "); } fputs ("\n", file);