Commit d84916bd by Jeff Law Committed by Jeff Law

nios2.c (nios2_label_align): Update for recent changes which dropped ALIGN_LABELS_LOG.

	* config/nios2/nios2.c (nios2_label_align): Update for recent
	changes which dropped ALIGN_LABELS_LOG.

From-SVN: r262836
parent 0d7afd5d
2018-07-17 Jeff Law <law@redhat.com>
* config/nios2/nios2.c (nios2_label_align): Update for recent
changes which dropped ALIGN_LABELS_LOG.
2018-07-17 Andreas Schwab <schwab@linux-m68k.org> 2018-07-17 Andreas Schwab <schwab@linux-m68k.org>
* config/m68k/m68k.md (umulsi3_highpart+1, const_umulsi3_highpart) * config/m68k/m68k.md (umulsi3_highpart+1, const_umulsi3_highpart)
......
...@@ -5403,8 +5403,8 @@ nios2_label_align (rtx label) ...@@ -5403,8 +5403,8 @@ nios2_label_align (rtx label)
int n = CODE_LABEL_NUMBER (label); int n = CODE_LABEL_NUMBER (label);
if (label_align && n >= min_labelno && n <= max_labelno) if (label_align && n >= min_labelno && n <= max_labelno)
return MAX (label_align[n - min_labelno], align_labels_log); return MAX (label_align[n - min_labelno], align_labels.levels[0].log);
return align_labels_log; return align_labels.levels[0].log;
} }
/* Implement ADJUST_REG_ALLOC_ORDER. We use the default ordering /* Implement ADJUST_REG_ALLOC_ORDER. We use the default ordering
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment