gimple-ssa-warn-alloca.c (pass_walloca::execute): Don't wrap warning_at or inform...
authorJakub Jelinek <jakub@redhat.com>
Fri, 8 Mar 2019 10:50:23 +0000 (11:50 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 8 Mar 2019 10:50:23 +0000 (11:50 +0100)
* gimple-ssa-warn-alloca.c (pass_walloca::execute): Don't wrap
warning_at or inform messages in G_() if there is no ?:.

From-SVN: r269486

gcc/ChangeLog
gcc/gimple-ssa-warn-alloca.c

index 5ce5907..86bb8d5 100644 (file)
@@ -1,5 +1,8 @@
 2019-03-08  Jakub Jelinek  <jakub@redhat.com>
 
+       * gimple-ssa-warn-alloca.c (pass_walloca::execute): Don't wrap
+       warning_at or inform messages in G_() if there is no ?:.
+
        PR tree-optimization/89550
        * builtins.c (c_strlen): Only set TREE_NO_WARNING if warning_at
        returned true.  Formatting fixes.
index 2d88fcf..d804146 100644 (file)
@@ -528,7 +528,7 @@ pass_walloca::execute (function *fun)
            }
          else if (warn_alloca)
            {
-             warning_at (loc, OPT_Walloca, G_("use of %<alloca%>"));
+             warning_at (loc, OPT_Walloca, "use of %<alloca%>");
              continue;
            }
          else if (warn_alloca_limit < 0)
@@ -571,8 +571,8 @@ pass_walloca::execute (function *fun)
                    && t.limit != 0)
                  {
                    print_decu (t.limit, buff);
-                   inform (loc, G_("limit is %wu bytes, but argument "
-                                   "may be as large as %s"),
+                   inform (loc, "limit is %wu bytes, but argument "
+                                "may be as large as %s",
                            is_vla ? warn_vla_limit : adjusted_alloca_limit,
                            buff);
                  }
@@ -588,7 +588,7 @@ pass_walloca::execute (function *fun)
                    && t.limit != 0)
                  {
                    print_decu (t.limit, buff);
-                   inform (loc, G_("limit is %wu bytes, but argument is %s"),
+                   inform (loc, "limit is %wu bytes, but argument is %s",
                              is_vla ? warn_vla_limit : adjusted_alloca_limit,
                              buff);
                  }
@@ -606,7 +606,7 @@ pass_walloca::execute (function *fun)
              break;
            case ALLOCA_IN_LOOP:
              gcc_assert (!is_vla);
-             warning_at (loc, wcode, G_("use of %<alloca%> within a loop"));
+             warning_at (loc, wcode, "use of %<alloca%> within a loop");
              break;
            case ALLOCA_CAST_FROM_SIGNED:
              gcc_assert (invalid_casted_type != NULL_TREE);