diff options
author | Dehao Chen <dehao@google.com> | 2012-09-20 03:17:26 +0000 |
---|---|---|
committer | Dehao Chen <dehao@gcc.gnu.org> | 2012-09-20 03:17:26 +0000 |
commit | 9d12bc687646448ab491066f34f25f5932d6144a (patch) | |
tree | 2d6389caf57d7633824aacec223b70182e5a267c /gcc/config/mep | |
parent | ac6d1200be5d5f6c49a8b6c4ae447bf82c449c25 (diff) | |
download | gcc-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/mep')
-rw-r--r-- | gcc/config/mep/mep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/mep/mep.c b/gcc/config/mep/mep.c index 1f71234..79611a8 100644 --- a/gcc/config/mep/mep.c +++ b/gcc/config/mep/mep.c @@ -6814,9 +6814,9 @@ mep_make_bundle (rtx core, rtx cop) /* Derive a location for the bundle. Individual instructions cannot have their own location because there can be no assembler labels between CORE and COP. */ - INSN_LOCATOR (insn) = INSN_LOCATOR (INSN_LOCATOR (core) ? core : cop); - INSN_LOCATOR (core) = 0; - INSN_LOCATOR (cop) = 0; + INSN_LOCATION (insn) = INSN_LOCATION (INSN_LOCATION (core) ? core : cop); + INSN_LOCATION (core) = 0; + INSN_LOCATION (cop) = 0; return insn; } @@ -6913,7 +6913,7 @@ mep_bundle_insns (rtx insns) whenever the current line changes, set the location info for INSN to match FIRST. */ - INSN_LOCATOR (insn) = INSN_LOCATOR (first); + INSN_LOCATION (insn) = INSN_LOCATION (first); note = PREV_INSN (insn); while (note && note != first) |