This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH][obvious] Fix param name in dump file


Hi all,

The name of the parameter is max-completely-peel-times.
Applying to trunk as obvious.

Thanks,
Kyrill

2016-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

    * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
    Change --param max-completely-peeled-times to
    --param max-completely-peel-times in dump file printing.
diff --git a/gcc/tree-ssa-loop-ivcanon.c b/gcc/tree-ssa-loop-ivcanon.c
index 9b59b4466c3203311cdd4346ef77f5af596890b6..9d92276dbbbfe3a768b9e8b0c90ee60e05c885fb 100644
--- a/gcc/tree-ssa-loop-ivcanon.c
+++ b/gcc/tree-ssa-loop-ivcanon.c
@@ -712,7 +712,7 @@ try_unroll_loop_completely (struct loop *loop,
     {
       if (dump_file && (dump_flags & TDF_DETAILS))
 	fprintf (dump_file, "Not unrolling loop %d "
-		 "(--param max-completely-peeled-times limit reached).\n",
+		 "(--param max-completely-peel-times limit reached).\n",
 		 loop->num);
       return false;
     }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]