gcc/ChangeLog:
PR translation/80760
* tree-ssa-loop-prefetch.cc (pass_loop_prefetch::execute): Add
missing colon to not-a-power-of-two param warning.
gcc/testsuite/ChangeLog:
PR translation/80760
* gcc.dg/tree-ssa/pr79803.c: Add ':' to expected warning.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
__builtin_longjmp (buf, 1);
}
-int execute(int cmd) /* { dg-warning "'l1-cache-size' parameter is not a power of two 3" } */
+int execute(int cmd) /* { dg-warning "'l1-cache-size' parameter is not a power of two: 3" } */
{
int last = 0;
if (!warned)
{
warning (OPT_Wdisabled_optimization,
- "%<l1-cache-size%> parameter is not a power of two %d",
+ "%<l1-cache-size%> parameter is not a power of two: %d",
PREFETCH_BLOCK);
warned = true;
}