Commit 1704a72b by DJ Delorie Committed by DJ Delorie

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

From-SVN: r211480
parent c7bb3484
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
......
......@@ -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;
......
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