diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:04 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:04 +0000 |
commit | e31844e307270f4050c60244b1707a62581b78ee (patch) | |
tree | 6a3263afe35ed78e6153bb741817a42c71b77b0b /toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch | |
parent | f6a212f1c0c079a3295c09510433d39b2215e191 (diff) | |
download | buildroot-novena-e31844e307270f4050c60244b1707a62581b78ee.tar.gz buildroot-novena-e31844e307270f4050c60244b1707a62581b78ee.zip |
toolchain/gcc: add 4.3.1
Based on Bernhards tree.
Diffstat (limited to 'toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch')
-rw-r--r-- | toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch b/toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch new file mode 100644 index 000000000..69f0c372d --- /dev/null +++ b/toolchain/gcc/4.3.1/993-arm_insn-opinit-RTX_CODE-fixup.patch @@ -0,0 +1,41 @@ +gcc/ChangeLog +2007-11-27 Bernhard Fischer <> + + * config/arm/arm-protos.h (arm_vector_mode_supported_p, + arm_hard_regno_mode_ok, const_ok_for_arm): Do not hide non-rtx related + function prototypes in RTX_CODE. + * genopinit.c: Include tm_p.h. + +Index: gcc-4.3.0/gcc/config/arm/arm-protos.h +=================================================================== +--- gcc-4.3.0/gcc/config/arm/arm-protos.h (revision 130463) ++++ gcc-4.3.0/gcc/config/arm/arm-protos.h (working copy) +@@ -40,15 +40,14 @@ + unsigned int); + extern unsigned int arm_dbx_register_number (unsigned int); + extern void arm_output_fn_unwind (FILE *, bool); +- + + #ifdef TREE_CODE + extern int arm_return_in_memory (const_tree); + #endif +-#ifdef RTX_CODE + extern bool arm_vector_mode_supported_p (enum machine_mode); + extern int arm_hard_regno_mode_ok (unsigned int, enum machine_mode); + extern int const_ok_for_arm (HOST_WIDE_INT); ++#ifdef RTX_CODE + extern int arm_split_constant (RTX_CODE, enum machine_mode, rtx, + HOST_WIDE_INT, rtx, rtx, int); + extern RTX_CODE arm_canonicalize_comparison (RTX_CODE, enum machine_mode, +Index: gcc-4.3.0/gcc/genopinit.c +=================================================================== +--- gcc-4.3.0/gcc/genopinit.c (revision 130463) ++++ gcc-4.3.0/gcc/genopinit.c (working copy) +@@ -486,6 +486,7 @@ + printf ("#include \"expr.h\"\n"); + printf ("#include \"optabs.h\"\n"); + printf ("#include \"reload.h\"\n\n"); ++ printf ("#include \"tm_p.h\"\n\n"); + + printf ("void\ninit_all_optabs (void)\n{\n"); + |