diff options
author | Jeff Law <law@redhat.com> | 2018-07-17 14:52:20 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2018-07-17 14:52:20 -0600 |
commit | 9c179c2dd0988dd1e0c241a6c5f1dc512cc55ae1 (patch) | |
tree | 5d0dcc835239007745cd2d6940ca7407d4d7d9ca /gcc | |
parent | 22ab45296cf5c7cc53234f1e8065fc2f04adf0b7 (diff) | |
download | gcc-9c179c2dd0988dd1e0c241a6c5f1dc512cc55ae1.zip gcc-9c179c2dd0988dd1e0c241a6c5f1dc512cc55ae1.tar.gz gcc-9c179c2dd0988dd1e0c241a6c5f1dc512cc55ae1.tar.bz2 |
mips.c (vr4130_align_insns): Update for recent changes to label_to_alignment.
* config/mips/mips.c (vr4130_align_insns): Update for recent
changes to label_to_alignment.
From-SVN: r262838
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 51e9122..ac4abda 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2018-07-17 Jeff Law <law@redhat.com> + * config/mips/mips.c (vr4130_align_insns): Update for recent + changes to label_to_alignment. + * config/frv/frv.c (frv_label_align): Update for recent changes to label_to_alignment. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 75ee834..ea2fae1 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -18539,7 +18539,7 @@ vr4130_align_insns (void) } /* See whether INSN is an aligned label. */ - if (LABEL_P (insn) && label_to_alignment (insn) >= 3) + if (LABEL_P (insn) && label_to_alignment (insn).levels[0].log >= 3) aligned_p = true; } dfa_finish (); |