diff options
author | pkoning <pkoning@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-09 11:59:05 +0000 |
---|---|---|
committer | pkoning <pkoning@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-09 11:59:05 +0000 |
commit | e12262f9255e80d8d750fbebb99b0ff42bf6c85f (patch) | |
tree | 5bb7ca82ed69fee88f04996d609398bfedf0769c /gcc | |
parent | fa30068d3f9f56bcd98ccba845ae84f6b8110e0d (diff) | |
download | gcc-e12262f9255e80d8d750fbebb99b0ff42bf6c85f.tar.gz |
* config/pdp11/pdp11.c (pdp11_assemble_integer): Clean up fix for
output of byte values.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166483 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/pdp11/pdp11.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 110b7fb1797..95a436f68aa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-11-09 Paul Koning <ni1d@arrl.net> + + * config/pdp11/pdp11.c (pdp11_assemble_integer): Clean up fix for + output of byte values. + 2010-11-09 Jakub Jelinek <jakub@redhat.com> PR middle-end/46360 diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index a9c758b4548..3c6c9c5c97b 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -1002,9 +1002,7 @@ pdp11_assemble_integer (rtx x, unsigned int size, int aligned_p) { case 1: fprintf (asm_out_file, "\t.byte\t"); - output_addr_const_pdp11 (asm_out_file, - GEN_INT (trunc_int_for_mode (INTVAL (x), - QImode) & 0xff)); + output_addr_const_pdp11 (asm_out_file, GEN_INT (INTVAL (x) & 0xff)); ; fprintf (asm_out_file, " /* char */\n"); return true; @@ -1742,7 +1740,7 @@ output_addr_const_pdp11 (FILE *file, rtx x) break; case CONST_INT: - fprintf (file, "%#o", (int) trunc_int_for_mode (INTVAL (x), HImode) & 0xffff); + fprintf (file, "%#o", (int) INTVAL (x) & 0xffff); break; case CONST: |