arc.c (hwloop_optimize): Add missing space in string literal.
authorJakub Jelinek <jakub@redhat.com>
Thu, 24 Oct 2019 22:27:10 +0000 (00:27 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 24 Oct 2019 22:27:10 +0000 (00:27 +0200)
* config/arc/arc.c (hwloop_optimize): Add missing space in string
literal.
* config/rx/rx.c (rx_print_operand): Likewise.
* tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
* tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Likewise.
* ipa-sra.c (create_parameter_descriptors, process_scan_results):
Likewise.
* genemit.c (emit_c_code): Likewise.
* plugin.c (try_init_one_plugin): Likewise.  Formatting fix.
cp/
* call.c (convert_arg_to_ellipsis): Add missing space in string
literal.

From-SVN: r277426

gcc/ChangeLog
gcc/config/arc/arc.c
gcc/config/rx/rx.c
gcc/cp/ChangeLog
gcc/cp/call.c
gcc/genemit.c
gcc/ipa-sra.c
gcc/plugin.c
gcc/tree-ssa-loop-ch.c
gcc/tree-vect-data-refs.c

index 3fac6bac1476e5fabeff6b705030a9df9a3c0b3f..9d1997500367ad9ec5774fbc1a9e1ec3610b7228 100644 (file)
@@ -1,3 +1,15 @@
+2019-10-24  Jakub Jelinek  <jakub@redhat.com>
+
+       * config/arc/arc.c (hwloop_optimize): Add missing space in string
+       literal.
+       * config/rx/rx.c (rx_print_operand): Likewise.
+       * tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
+       * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Likewise.
+       * ipa-sra.c (create_parameter_descriptors, process_scan_results):
+       Likewise.
+       * genemit.c (emit_c_code): Likewise.
+       * plugin.c (try_init_one_plugin): Likewise.  Formatting fix.
+
 2019-10-24  Jan Hubicka  <hubicka@ucw.cz>
 
        * symbols-summary.h (fast_function_summary<T *, V>::release,
index 0b5d3fd7e260feeb40b960dba60d1525b6fb8e8c..138c84ec5aaf140c292aee9df4821ad47137478e 100644 (file)
@@ -8001,7 +8001,7 @@ hwloop_optimize (hwloop_info loop)
          return false;
        }
       if (dump_file)
-       fprintf (dump_file, ";; loop %d has a control like last insn;"
+       fprintf (dump_file, ";; loop %d has a control like last insn; "
                 "add a nop\n",
                 loop->loop_no);
 
@@ -8011,7 +8011,7 @@ hwloop_optimize (hwloop_info loop)
   if (LABEL_P (last_insn))
     {
       if (dump_file)
-       fprintf (dump_file, ";; loop %d has a label as last insn;"
+       fprintf (dump_file, ";; loop %d has a label as last insn; "
                 "add a nop\n",
                 loop->loop_no);
       last_insn = emit_insn_after (gen_nopv (), last_insn);
@@ -8038,7 +8038,7 @@ hwloop_optimize (hwloop_info loop)
   if (entry_edge == NULL)
     {
       if (dump_file)
-       fprintf (dump_file, ";; loop %d has no fallthru edge jumping"
+       fprintf (dump_file, ";; loop %d has no fallthru edge jumping "
                 "into the loop\n",
                 loop->loop_no);
       return false;
index c7ce19c1fc0ac5eb0209d0849678b19e8242277f..931205c9232af29e0de78d13609d42bb46eec093 100644 (file)
@@ -649,7 +649,7 @@ rx_print_operand (FILE * file, rtx op, int letter)
        case CTRLREG_INTB:  fprintf (file, "intb"); break;
        default:
          warning (0, "unrecognized control register number: %d"
-                  "- using %<psw%>", (int) INTVAL (op));
+                  " - using %<psw%>", (int) INTVAL (op));
          fprintf (file, "psw");
          break;
        }
index 35904186fd13b416cf08b09c22c11433105ef983..33420f1289d390ae9000e0dd2c38589bb75c5907 100644 (file)
@@ -1,3 +1,8 @@
+2019-10-24  Jakub Jelinek  <jakub@redhat.com>
+
+       * call.c (convert_arg_to_ellipsis): Add missing space in string
+       literal.
+
 2019-10-24  Marek Polacek  <polacek@redhat.com>
 
        * decl.c (reshape_init_r): Add missing space.
index 55d2abaaddd4fb143147e6058849f6ecf64cdaa8..cbd1fe8a0a452d7e3747c59ee3438ea73828365b 100644 (file)
@@ -7590,7 +7590,7 @@ convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
              && TYPE_MODE (TREE_TYPE (prom)) != TYPE_MODE (arg_type)
              && (complain & tf_warning))
            warning_at (loc, OPT_Wabi, "scoped enum %qT passed through %<...%>"
-                       "as %qT before %<-fabi-version=6%>, %qT after",
+                       " as %qT before %<-fabi-version=6%>, %qT after",
                        arg_type,
                        TREE_TYPE (prom), ENUM_UNDERLYING_TYPE (arg_type));
          if (!abi_version_at_least (6))
index 73ed3231cf697f43107f8b8138e48d6b803f1e82..d590f8d26dd2ee8bb49cfa29b3d6fe326dbbf392 100644 (file)
@@ -305,7 +305,7 @@ emit_c_code (const char *code, bool can_fail_p, const char *name)
   else
     printf ("#define FAIL _Pragma (\"GCC error \\\"%s cannot FAIL\\\"\")"
            " (void)0\n", name);
-  printf ("#define DONE return (_val = get_insns (),"
+  printf ("#define DONE return (_val = get_insns (), "
          "end_sequence (), _val)\n");
 
   rtx_reader_ptr->print_md_ptr_loc (code);
index 50dee69e3db53de15e8d98d5e8ade09f2498e245..836db4015880d747f716f30b90e8d703ce424f4b 100644 (file)
@@ -1137,8 +1137,8 @@ create_parameter_descriptors (cgraph_node *node,
              && TYPE_NONALIASED_COMPONENT (type))
            {
              if (dump_file && (dump_flags & TDF_DETAILS))
-               fprintf (dump_file, " not a candidate, reference to a"
-                        "nonaliased component array\n");
+               fprintf (dump_file, " not a candidate, reference to "
+                        "nonaliased component array\n");
              continue;
            }
          if (!is_gimple_reg (parm))
@@ -2284,8 +2284,8 @@ process_scan_results (cgraph_node *node, struct function *fun,
       if (nonarg_acc_size > param_size_limit
          || (!desc->by_ref && nonarg_acc_size == param_size_limit))
        {
-         disqualify_split_candidate (desc, "Would result into a too big set of"
-                                     "replacements.");
+         disqualify_split_candidate (desc, "Would result into a too big set "
+                                     "of replacements.");
        }
       else
        {
index a9d3171ecb335b3bd8dd3d2525902cb9eea775c5..8ea08ab8a67ffb43016a3a1668e18a8a44f22e28 100644 (file)
@@ -712,10 +712,10 @@ try_init_one_plugin (struct plugin_name_args *plugin)
   if (dlsym (dl_handle, str_license) == NULL)
     fatal_error (input_location,
                 "plugin %s is not licensed under a GPL-compatible license"
-                "%s", plugin->full_name, dlerror ());
+                " %s", plugin->full_name, dlerror ());
 
-  PTR_UNION_AS_VOID_PTR (plugin_init_union) =
-      dlsym (dl_handle, str_plugin_init_func_name);
+  PTR_UNION_AS_VOID_PTR (plugin_init_union)
+    = dlsym (dl_handle, str_plugin_init_func_name);
   plugin_init = PTR_UNION_AS_CAST_PTR (plugin_init_union);
 
   if ((err = dlerror ()) != NULL)
index d92d7c856901c46abe4fb24781a026f7ba617590..5a30a296d5e09170200010677e657d266f365a56 100644 (file)
@@ -199,7 +199,7 @@ should_duplicate_loop_header_p (basic_block header, class loop *loop,
       if (dump_file && (dump_flags & TDF_DETAILS))
        fprintf (dump_file,
                 "  Not duplicating bb %i: condition based on non-IV loop"
-                "variant.\n", header->index);
+                " variant.\n", header->index);
       return false;
     }
 
index 987dc0ee177fd6728924ef465c1dc76ad8e785a9..9dd18d265361ba5635de685f9d898e355999bf4c 100644 (file)
@@ -4282,7 +4282,7 @@ vect_analyze_data_refs (vec_info *vinfo, poly_uint64 *min_vf, bool *fatal)
        {
          if (nested_in_vect_loop_p (loop, stmt_info))
            return opt_result::failure_at (stmt_info->stmt,
-                                          "not vectorized:"
+                                          "not vectorized: "
                                           "not suitable for strided load %G",
                                           stmt_info->stmt);
          STMT_VINFO_STRIDED_P (stmt_info) = true;