1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- gcc/tree-ssa-reassoc.c.orig 2018-07-13 23:29:13 UTC
+++ gcc/tree-ssa-reassoc.c
@@ -4208,7 +4208,7 @@ attempt_builtin_powi (gimple stmt, vec<o
if (elt < vec_len - 1)
fputs (" * ", dump_file);
}
- fprintf (dump_file, ")^"HOST_WIDE_INT_PRINT_DEC"\n",
+ fprintf (dump_file, ")^" HOST_WIDE_INT_PRINT_DEC "\n",
power);
}
}
@@ -4242,7 +4242,7 @@ attempt_builtin_powi (gimple stmt, vec<o
if (elt < vec_len - 1)
fputs (" * ", dump_file);
}
- fprintf (dump_file, ")^"HOST_WIDE_INT_PRINT_DEC"\n", power);
+ fprintf (dump_file, ")^" HOST_WIDE_INT_PRINT_DEC "\n", power);
}
reassociate_stats.pows_created++;
|