diff options
| author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-12 21:14:31 +0000 |
|---|---|---|
| committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-12 21:14:31 +0000 |
| commit | d2b937d6048bfbc0ae3756dcae8ff8d5ab359ed2 (patch) | |
| tree | 4a6f5e120701c3b9077bbd4a0e5c91f420ae43a8 | |
| parent | 3984769052c7950a75f6c134ce78afd2d6f2b606 (diff) | |
| download | ppe42-gcc-d2b937d6048bfbc0ae3756dcae8ff8d5ab359ed2.tar.gz ppe42-gcc-d2b937d6048bfbc0ae3756dcae8ff8d5ab359ed2.zip | |
2012-12-12 Steve Ellcey <sellcey@mips.com>
* config/mips/mips.c (mips_option_override): Set
mips_dbx_regno entries to IGNORED_DWARF_REGNUM by default.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194453 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/mips/mips.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 80e60d5cf95..48aae88c248 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-12-12 Steve Ellcey <sellcey@mips.com> + + * config/mips/mips.c (mips_option_override): Set + mips_dbx_regno entries to IGNORED_DWARF_REGNUM by default. + 2012-12-12 Steven Bosscher <steven@gcc.gnu.org> * graph.c: Include sbitmap.h and cfgloop.h. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 820b228d3a6..7ac8bb7a91b 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -16742,7 +16742,7 @@ mips_option_override (void) for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) { - mips_dbx_regno[i] = INVALID_REGNUM; + mips_dbx_regno[i] = IGNORED_DWARF_REGNUM; if (GP_REG_P (i) || FP_REG_P (i) || ALL_COP_REG_P (i)) mips_dwarf_regno[i] = i; else @@ -16757,9 +16757,6 @@ mips_option_override (void) for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++) mips_dbx_regno[i] = i + start; - for (i = ALL_COP_REG_FIRST; i <= ALL_COP_REG_LAST; i++) - mips_dbx_regno[i] = IGNORED_DWARF_REGNUM; - /* Accumulator debug registers use big-endian ordering. */ mips_dbx_regno[HI_REGNUM] = MD_DBX_FIRST + 0; mips_dbx_regno[LO_REGNUM] = MD_DBX_FIRST + 1; |

