diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-27 15:22:07 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-27 15:22:07 +0000 |
commit | 734bbdc067bf4ab80929a37705bd92e0308c92f0 (patch) | |
tree | 84e1b4e9d1fac375363b3d9447600ddf58267791 /gcc/config/rx | |
parent | a679ddb9487494af36eec50558562140fc049ace (diff) | |
download | gcc-734bbdc067bf4ab80929a37705bd92e0308c92f0.tar.gz |
Remove experimental LRA test
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@202022 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rx')
-rw-r--r-- | gcc/config/rx/rx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rx/rx.c b/gcc/config/rx/rx.c index c23fdf95a8c..93b5de69365 100644 --- a/gcc/config/rx/rx.c +++ b/gcc/config/rx/rx.c @@ -1021,9 +1021,9 @@ rx_gen_move_template (rtx * operands, bool is_movu) gcc_assert (! is_movu); if (REG_P (src) && REG_P (dest) && (REGNO (dest) == REGNO (src) + 1)) - sprintf (out_template, "mov.L\t%H1, %H0 | mov.L\t%1, %0"); + sprintf (out_template, "mov.L\t%%H1, %%H0 ! mov.L\t%%1, %%0"); else - sprintf (out_template, "mov.L\t%1, %0 | mov.L\t%H1, %H0"); + sprintf (out_template, "mov.L\t%%1, %%0 ! mov.L\t%%H1, %%H0"); } else sprintf (out_template, "%s%s\t%s, %s", is_movu ? "movu" : "mov", @@ -3270,7 +3270,7 @@ rx_ok_to_inline (tree caller, tree callee) static bool rx_enable_lra (void) { - return TARGET_ENABLE_LRA || 1; + return TARGET_ENABLE_LRA; } |