aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/c6x
diff options
context:
space:
mode:
authorDehao Chen <dehao@google.com>2012-09-20 03:17:26 +0000
committerDehao Chen <dehao@gcc.gnu.org>2012-09-20 03:17:26 +0000
commit9d12bc687646448ab491066f34f25f5932d6144a (patch)
tree2d6389caf57d7633824aacec223b70182e5a267c /gcc/config/c6x
parentac6d1200be5d5f6c49a8b6c4ae447bf82c449c25 (diff)
downloadgcc-9d12bc687646448ab491066f34f25f5932d6144a.zip
gcc-9d12bc687646448ab491066f34f25f5932d6144a.tar.gz
gcc-9d12bc687646448ab491066f34f25f5932d6144a.tar.bz2
s390.c (s390_chunkify_start): Replacing INSN_LOCATOR.
2012-09-19 Dehao Chen <dehao@google.com> * config/s390/s390.c (s390_chunkify_start): Replacing INSN_LOCATOR. * config/spu/spu.c (emit_nop_for_insn): Likewise. (pad_bb): Likewise. (spu_emit_branch_hint): Likewise. (insert_hbrp_for_ilb_runout): Likewise. * config/mep/mep.c (mep_make_bundle): Likewise. (mep_bundle_insns): Likewise. * config/sh/sh.c (gen_block_redirect): Likewise. * config/c6x/c6x.c (gen_one_bundle): Likewise. * config/rs6000/rs6000.c (rs6000_final_prescan_insn): Likewise. * config/picochip/picochip.c (picochip_reorg): Likewise. * config/arm/arm.c (require_pic_register): Likewise. * config/mips/mips.c (mips16_gp_pseudo_reg): Likewise. * config/bfin/bfin.c (gen_one_bundle): Likewise. From-SVN: r191510
Diffstat (limited to 'gcc/config/c6x')
-rw-r--r--gcc/config/c6x/c6x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/c6x/c6x.c b/gcc/config/c6x/c6x.c
index e894882..32807d8 100644
--- a/gcc/config/c6x/c6x.c
+++ b/gcc/config/c6x/c6x.c
@@ -4595,7 +4595,7 @@ gen_one_bundle (rtx *slot, int n_filled, int real_first)
bundle = gen_rtx_SEQUENCE (VOIDmode, gen_rtvec_v (n_filled, slot));
bundle = make_insn_raw (bundle);
BLOCK_FOR_INSN (bundle) = BLOCK_FOR_INSN (slot[0]);
- INSN_LOCATOR (bundle) = INSN_LOCATOR (slot[0]);
+ INSN_LOCATION (bundle) = INSN_LOCATION (slot[0]);
PREV_INSN (bundle) = PREV_INSN (slot[real_first]);
t = NULL_RTX;
@@ -4609,7 +4609,7 @@ gen_one_bundle (rtx *slot, int n_filled, int real_first)
NEXT_INSN (t) = insn;
t = insn;
if (i > 0)
- INSN_LOCATOR (slot[i]) = INSN_LOCATOR (bundle);
+ INSN_LOCATION (slot[i]) = INSN_LOCATION (bundle);
}
NEXT_INSN (bundle) = NEXT_INSN (PREV_INSN (bundle));