ports/devel/ti-msp430gcc/patches/patch-sources_tools_gcc_tree-ssa-reassoc_c

24 lines
767 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
clang fix
Index: sources/tools/gcc/tree-ssa-reassoc.c
--- sources/tools/gcc/tree-ssa-reassoc.c.orig
+++ sources/tools/gcc/tree-ssa-reassoc.c
@@ -4208,7 +4208,7 @@ attempt_builtin_powi (gimple stmt, vec<operand_entry_t
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<operand_entry_t
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++;