summaryrefslogtreecommitdiff
path: root/gcc_arm/config
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2021-08-09 19:00:53 -0400
committerGitHub <noreply@github.com>2021-08-09 19:00:53 -0400
commit1cff637716dcc2e5fff74c7bedb7ae0da0eb5b47 (patch)
treeb6fa7e80495b6988cefb2ee4294a2bba95d9358a /gcc_arm/config
parentbd1b2f511edfb30610b8d88f66f80323b3cc0aee (diff)
parent5297ebf5085b236d8735c6722034dc5a782c2b0e (diff)
Merge pull request #39 from luckytyphlosion/master
Fix builds on xcode 12+
Diffstat (limited to 'gcc_arm/config')
-rwxr-xr-xgcc_arm/config/arm/arm.c2
-rwxr-xr-xgcc_arm/config/arm/arm.h6
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc_arm/config/arm/arm.c b/gcc_arm/config/arm/arm.c
index 06d942a..cd643a3 100755
--- a/gcc_arm/config/arm/arm.c
+++ b/gcc_arm/config/arm/arm.c
@@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA. */
#include "tree.h"
#include "expr.h"
#include "toplev.h"
+#include "recog.h"
/* The maximum number of insns skipped which will be conditionalised if
possible. */
@@ -47,7 +48,6 @@ extern FILE *asm_out_file;
/* Some function declarations. */
/* CYGNUS LOCAL */
-void arm_increase_location PROTO ((int));
static int get_prologue_size PROTO ((void));
/* END CYGNUS LOCAL */
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__ */