Deleted Added
full compact
4332c4332,4334
< tree fn_fputc = unlocked ? implicit_built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
---
> /* If we're using an unlocked function, assume the other unlocked
> functions exist explicitly. */
> tree const fn_fputc = unlocked ? built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
4334c4336
< tree fn_fwrite = unlocked ? implicit_built_in_decls[BUILT_IN_FWRITE_UNLOCKED]
---
> tree const fn_fwrite = unlocked ? built_in_decls[BUILT_IN_FWRITE_UNLOCKED]
4337,4339c4339,4340
< /* If the return value is used, or the replacement _DECL isn't
< initialized, don't do the transformation. */
< if (target != const0_rtx || !fn_fputc || !fn_fwrite)
---
> /* If the return value is used, don't do the transformation. */
> if (target != const0_rtx)
4399a4401,4405
> /* If the replacement _DECL isn't initialized, don't do the
> transformation. */
> if (!fn)
> return 0;
>
4654,4658c4660,4665
< tree fn_putchar = unlocked
< ? implicit_built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED]
< : implicit_built_in_decls[BUILT_IN_PUTCHAR];
< tree fn_puts = unlocked ? implicit_built_in_decls[BUILT_IN_PUTS_UNLOCKED]
< : implicit_built_in_decls[BUILT_IN_PUTS];
---
> /* If we're using an unlocked function, assume the other unlocked
> functions exist explicitly. */
> tree const fn_putchar = unlocked ? built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED]
> : implicit_built_in_decls[BUILT_IN_PUTCHAR];
> tree const fn_puts = unlocked ? built_in_decls[BUILT_IN_PUTS_UNLOCKED]
> : implicit_built_in_decls[BUILT_IN_PUTS];
4757,4760c4764,4769
< tree fn_fputc = unlocked ? implicit_built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
< : implicit_built_in_decls[BUILT_IN_FPUTC];
< tree fn_fputs = unlocked ? implicit_built_in_decls[BUILT_IN_FPUTS_UNLOCKED]
< : implicit_built_in_decls[BUILT_IN_FPUTS];
---
> /* If we're using an unlocked function, assume the other unlocked
> functions exist explicitly. */
> tree const fn_fputc = unlocked ? built_in_decls[BUILT_IN_FPUTC_UNLOCKED]
> : implicit_built_in_decls[BUILT_IN_FPUTC];
> tree const fn_fputs = unlocked ? built_in_decls[BUILT_IN_FPUTS_UNLOCKED]
> : implicit_built_in_decls[BUILT_IN_FPUTS];