------- Comment #1 from pinskia at gcc dot gnu dot org 2007-02-26 21:30 ------- static bool pdp11_assemble_integer (rtx x, unsigned int size, int aligned_p) { if (aligned_p) switch (size) { case 1: fprintf (asm_out_file, "\t.byte\t"); output_addr_const_pdp11 (asm_out_file, x); fprintf (asm_out_file, " /* char */\n"); return true;
case 2: fprintf (asm_out_file, TARGET_UNIX_ASM ? "\t" : "\t.word\t"); output_addr_const_pdp11 (asm_out_file, x); fprintf (asm_out_file, " /* short */\n"); return true; } return default_assemble_integer (x, size, aligned_p); } TARGET_UNIX_ASM is true for pdp11-dec-bsd -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Component|bootstrap |target http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30974