* config/rx/rx.c (rx_max_skip_for_label): Don't skip anything if -Os.

From-SVN: r211480
This commit is contained in:
DJ Delorie 2014-06-11 15:31:11 -04:00 committed by DJ Delorie
parent c7bb3484a2
commit 1704a72b46
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-06-11 DJ Delorie <dj@redhat.com>
* config/rx/rx.c (rx_max_skip_for_label): Don't skip anything if -Os.
2014-06-11 Maciej W. Rozycki <macro@codesourcery.com>
* config/mmix/mmix-protos.h (mmix_asm_output_source_line): Remove

View File

@ -3210,6 +3210,9 @@ rx_max_skip_for_label (rtx lab)
int opsize;
rtx op;
if (optimize_size)
return 0;
if (lab == NULL_RTX)
return 0;