summaryrefslogtreecommitdiff
path: root/devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2018-07-14 00:52:26 +0000
committerMark Linimon <linimon@FreeBSD.org>2018-07-14 00:52:26 +0000
commit08f94721491d557c3e824b316120f1a55d590b9d (patch)
tree49bcfc2958f34d3849f1a2413bd39d5cd14c3e25 /devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c
parentsecurity/tor-devel: Update 0.3.4.4 -> 0.3.4.5 (diff)
Attempt to fix build with clang6.
Diffstat (limited to 'devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c')
-rw-r--r--devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c b/devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c
new file mode 100644
index 000000000000..0fa7e6ad2fa5
--- /dev/null
+++ b/devel/arm-none-eabi-gcc492/files/patch-gcc_tree-ssa-reassoc.c
@@ -0,0 +1,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++;