diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2021-01-25 22:25:35 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2021-01-25 22:25:35 -0500 |
commit | 1f83e3d73ffcb5ed0d028f132337d8d86b8d0ead (patch) | |
tree | 01d534fb9a6aa5ca1d83631915ec69e226f2f3d2 /gcc_arm/config/arm/arm.h | |
parent | e4250fbaac8c4944d27f58cbfa469edd8b6374f5 (diff) |
Fix builds on xcode 12+
Enforce the use of -Werror-implicit-function-declaration for all platforms to catch this. See: https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes
Diffstat (limited to 'gcc_arm/config/arm/arm.h')
-rwxr-xr-x | gcc_arm/config/arm/arm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc_arm/config/arm/arm.h b/gcc_arm/config/arm/arm.h index 6429c3d..964389e 100755 --- a/gcc_arm/config/arm/arm.h +++ b/gcc_arm/config/arm/arm.h @@ -2215,4 +2215,10 @@ int ok_integer_or_other (); /* END CYGNUS LOCAL */ int s_register_operand (/* register rtx op, enum machine_mode mode */); +void arm_asm_output_label (/*FILE *, char **/); +void arm_increase_location PARAMS ((int)); +int short_branch PARAMS ((int, int)); +int arm_insn_not_targeted (/* rtx */); +int arm_backwards_branch PARAMS ((int, int)); + #endif /* __ARM_H__ */ |