ports/devel/mingw32-gcc/files/patch-gcc_tree-ssa-reassoc.c
Stephen Montgomery-Smith 0816ffb03a - Patches so that it builds with clang-6.
PR:		ports/229662
Submitted by:	stephen@FreeBSD.org
2018-07-10 21:13:45 +00:00

20 lines
680 B
C

--- gcc/tree-ssa-reassoc.c.orig 2013-05-07 14:43:17 UTC
+++ gcc/tree-ssa-reassoc.c
@@ -3795,7 +3795,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);
}
}
@@ -3829,7 +3829,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++;