diff options
author | dehao <dehao@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-20 03:17:26 +0000 |
---|---|---|
committer | dehao <dehao@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-20 03:17:26 +0000 |
commit | d53c050c98f896d849622c8bae97a561d6ffd2ab (patch) | |
tree | 2d6389caf57d7633824aacec223b70182e5a267c /gcc/config/c6x | |
parent | eaf4b52d10e8399420a931445d290a5b470cd56e (diff) | |
download | gcc-d53c050c98f896d849622c8bae97a561d6ffd2ab.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@191510 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/c6x')
-rw-r--r-- | gcc/config/c6x/c6x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/c6x/c6x.c b/gcc/config/c6x/c6x.c index e89488299a4..32807d8eaca 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)); |