mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-08 19:20:44 +08:00
pdp11.c (pdp11_assemble_integer): Clean up fix for output of byte values.
* config/pdp11/pdp11.c (pdp11_assemble_integer): Clean up fix for output of byte values. From-SVN: r166483
This commit is contained in:
parent
277dc8106a
commit
b9cb66d281
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user