diff options
author | jules <jules@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-02 20:13:08 +0000 |
---|---|---|
committer | jules <jules@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-02 20:13:08 +0000 |
commit | 285a01fc738dc002c2f52f08bfb3f37f15b8e462 (patch) | |
tree | 95553b682421937874e93703d48585f869e35c27 /gcc/dojump.c | |
parent | 37565543d19f2e6009f9eeb56d241e34ce8671cd (diff) | |
download | gcc-285a01fc738dc002c2f52f08bfb3f37f15b8e462.tar.gz |
gcc/
* config/arm/arm-protos.h (tune_params): Add branch_cost hook.
* config/arm/arm.c (arm_default_branch_cost): New.
(arm_slowmul_tune, arm_fastmul_tune, arm_xscale_tune, arm_9e_tune)
(arm_v6t2_tune, arm_cortex_tune, arm_cortex_a9_tune)
(arm_fa726_tune): Set branch_cost field using
arm_default_branch_cost.
* config/arm/arm.h (BRANCH_COST): Use branch_cost hook from
current_tune structure.
* dojump.c (tm_p.h): Include file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174578 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dojump.c')
-rw-r--r-- | gcc/dojump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/dojump.c b/gcc/dojump.c index 6437a1f2295..7606c15330d 100644 --- a/gcc/dojump.c +++ b/gcc/dojump.c @@ -36,6 +36,7 @@ along with GCC; see the file COPYING3. If not see #include "ggc.h" #include "basic-block.h" #include "output.h" +#include "tm_p.h" static bool prefer_and_bit_test (enum machine_mode, int); static void do_jump_by_parts_greater (tree, tree, int, rtx, rtx, int); |