diff options
Diffstat (limited to 'gcc/config/rs6000/rs6000.c')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 838315e..f8a168d 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -8745,7 +8745,7 @@ rs6000_elf_asm_out_constructor (symbol, priority) fputs (")@fixup\n", asm_out_file); } else - assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, 1); + assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); } static void @@ -8776,7 +8776,7 @@ rs6000_elf_asm_out_destructor (symbol, priority) fputs (")@fixup\n", asm_out_file); } else - assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, 1); + assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); } #endif |