diff options
author | Michael Eager <eager@gcc.gnu.org> | 2013-06-27 00:02:40 +0000 |
---|---|---|
committer | Michael Eager <eager@gcc.gnu.org> | 2013-06-27 00:02:40 +0000 |
commit | e2c600d251e7e9fbc5ed24ddf567e7fa20854cb9 (patch) | |
tree | 87581ef83e545999f52828c236d008b1e5d4a340 /gcc/config/microblaze/microblaze.c | |
parent | 8eedc3ebe72acf248e30b328368a3ca2d11b0466 (diff) | |
download | gcc-e2c600d251e7e9fbc5ed24ddf567e7fa20854cb9.tar.gz |
Revert 200443.
From-SVN: r200444
Diffstat (limited to 'gcc/config/microblaze/microblaze.c')
-rw-r--r-- | gcc/config/microblaze/microblaze.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/config/microblaze/microblaze.c b/gcc/config/microblaze/microblaze.c index ea2b033becb..c121c2baec3 100644 --- a/gcc/config/microblaze/microblaze.c +++ b/gcc/config/microblaze/microblaze.c @@ -2118,7 +2118,6 @@ microblaze_initial_elimination_offset (int from, int to) 't' print 't' for EQ, 'f' for NE 'm' Print 1<<operand. 'i' Print 'i' if MEM operand has immediate value - 'y' Print 'y' if MEM operand is single register 'o' Print operand address+4 '?' Print 'd' if we use a branch with delay slot instead of normal branch. 'h' Print high word of const_double (int or float) value as hex @@ -2289,15 +2288,6 @@ print_operand (FILE * file, rtx op, int letter) rtx op4 = adjust_address (op, GET_MODE (op), 4); output_address (XEXP (op4, 0)); } - else if (letter == 'y') - { - rtx mem_reg = XEXP (op, 0); - if (GET_CODE (mem_reg) == REG) - { - register int regnum = REGNO (mem_reg); - fprintf (file, "%s", reg_names[regnum]); - } - } else output_address (XEXP (op, 0)); |