Commit c21ee927 by Jim Wilson

(output_mem_loc_descriptor, case MULT): Add.

(dwarf_fund_type_name, case FT_unsigned_int64): Fix typo.

From-SVN: r13254
parent dd2478ae
......@@ -1098,7 +1098,7 @@ dwarf_fund_type_name (ft)
case FT_unsigned_int32: return "FT_unsigned_int32";
case FT_int64: return "FT_int64";
case FT_signed_int64: return "FT_signed_int64";
case FT_unsigned_int64: return "FT_signed_int64";
case FT_unsigned_int64: return "FT_unsigned_int64";
case FT_real32: return "FT_real32";
case FT_real64: return "FT_real64";
......@@ -1663,6 +1663,15 @@ output_mem_loc_descriptor (rtl)
ASM_OUTPUT_DWARF_DATA4 (asm_out_file, INTVAL (rtl));
break;
case MULT:
/* If a pseudo-reg is optimized away, it is possible for it to
be replaced with a MEM containing a multiply. Use a GNU extension
to describe it. */
output_mem_loc_descriptor (XEXP (rtl, 0));
output_mem_loc_descriptor (XEXP (rtl, 1));
ASM_OUTPUT_DWARF_STACK_OP (asm_out_file, OP_MULT);
break;
default:
abort ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment