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

From-SVN: r40269
This commit is contained in:
Krister Walfridsson 2001-03-07 00:29:30 +01:00 committed by Richard Henderson
parent a867b80ccf
commit d2f65b7b52
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* cppinternals.texi: Update.

View File

@ -153,7 +153,7 @@ dw2_asm_output_delta VPARAMS ((int size, const char *lab1, const char *lab2,
fputc ('-', asm_out_file);
assemble_name (asm_out_file, lab2);
#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, lab2)),
size, 1);