Commit d2f65b7b by Krister Walfridsson Committed by Richard Henderson

* dwarf2asm.c (dw2_asm_output_delta): Fix smallest_mode_for_size call.

From-SVN: r40269
parent a867b80c
2001-03-06 Krister Walfridsson <cato@df.lth.se>
* dwarf2asm.c (dw2_asm_output_delta): Fix smallest_mode_for_size call.
2001-03-06 Neil Booth <neil@daikokuya.demon.co.uk> 2001-03-06 Neil Booth <neil@daikokuya.demon.co.uk>
* cppinternals.texi: Update. * cppinternals.texi: Update.
......
...@@ -153,7 +153,7 @@ dw2_asm_output_delta VPARAMS ((int size, const char *lab1, const char *lab2, ...@@ -153,7 +153,7 @@ dw2_asm_output_delta VPARAMS ((int size, const char *lab1, const char *lab2,
fputc ('-', asm_out_file); fputc ('-', asm_out_file);
assemble_name (asm_out_file, lab2); assemble_name (asm_out_file, lab2);
#else #else
assemble_integer (gen_rtx_MINUS (smallest_mode_for_size (size, MODE_INT, 0), assemble_integer (gen_rtx_MINUS (smallest_mode_for_size (size, MODE_INT),
gen_rtx_SYMBOL_REF (Pmode, lab1), gen_rtx_SYMBOL_REF (Pmode, lab1),
gen_rtx_SYMBOL_REF (Pmode, lab2)), gen_rtx_SYMBOL_REF (Pmode, lab2)),
size, 1); size, 1);
......
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