diff options
author | Ilya Leoshkevich <iii@linux.ibm.com> | 2018-08-02 22:39:59 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2018-08-02 16:39:59 -0600 |
commit | 65e8746285c96f66653fe19d69f1880a400bdbb0 (patch) | |
tree | 3c741572febf94789ee04e248dbfec94bf30b93a /gcc/dwarf2out.c | |
parent | 653fee1961981f1fee3a0ced7ac4d36b4cec2064 (diff) | |
download | gcc-65e8746285c96f66653fe19d69f1880a400bdbb0.zip gcc-65e8746285c96f66653fe19d69f1880a400bdbb0.tar.gz gcc-65e8746285c96f66653fe19d69f1880a400bdbb0.tar.bz2 |
nds32.c (nds32_hard_regno_mode_ok): Replace > with >=.
* config/nds32/nds32.c (nds32_hard_regno_mode_ok): Replace > with >=.
* df-problems.c (df_remove_dead_eq_notes): Replace > with >=.
* dwarf2out.c (mem_loc_descriptor): Replace > with >=.
* lra-constraints.c (spill_hard_reg_in_range): Replace <= with <.
* lra-remat.c (call_used_input_regno_present_p): Replace <= with <.
From-SVN: r263280
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index ffbde6f..1850a0f 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -15476,7 +15476,7 @@ mem_loc_descriptor (rtx rtl, machine_mode mode, if (dwarf_strict && dwarf_version < 5) break; - if (REGNO (rtl) > FIRST_PSEUDO_REGISTER) + if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER) break; type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode)); if (type_die == NULL) |