diff options
Diffstat (limited to 'gcc/tree-ssa-reassoc.c')
-rw-r--r-- | gcc/tree-ssa-reassoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-reassoc.c b/gcc/tree-ssa-reassoc.c index ae9d631..f79303b 100644 --- a/gcc/tree-ssa-reassoc.c +++ b/gcc/tree-ssa-reassoc.c @@ -4549,7 +4549,7 @@ attempt_builtin_powi (gimple stmt, vec<operand_entry_t> *ops) 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); } } @@ -4583,7 +4583,7 @@ attempt_builtin_powi (gimple stmt, vec<operand_entry_t> *ops) 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++; |