diff options
author | Jeff Law <law@redhat.com> | 2017-05-15 10:27:07 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2017-05-15 10:27:07 -0600 |
commit | cc9d8f3b46c0fbb515199d067789aaf890b62088 (patch) | |
tree | d6d34865a31ed19f4df2226520c3413095d64632 /gcc/config/tilepro | |
parent | 982490afa5b8711c316fdf1b1fc3b05af2f80218 (diff) | |
download | gcc-cc9d8f3b46c0fbb515199d067789aaf890b62088.zip gcc-cc9d8f3b46c0fbb515199d067789aaf890b62088.tar.gz gcc-cc9d8f3b46c0fbb515199d067789aaf890b62088.tar.bz2 |
tilegx.c (tilegx_expand_unaligned_load): Add missing argument to extract_bit_field call.
* config/tilegx/tilegx.c (tilegx_expand_unaligned_load): Add
missing argument to extract_bit_field call.
* config/tilepro/tilepro.c (tilepro_expand_unaligned_load): Likewise.
From-SVN: r248066
Diffstat (limited to 'gcc/config/tilepro')
-rw-r--r-- | gcc/config/tilepro/tilepro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index aa1bb1c..81019c1 100644 --- a/gcc/config/tilepro/tilepro.c +++ b/gcc/config/tilepro/tilepro.c @@ -1688,7 +1688,7 @@ tilepro_expand_unaligned_load (rtx dest_reg, rtx mem, HOST_WIDE_INT bitsize, extract_bit_field (gen_lowpart (SImode, wide_result), bitsize, bit_offset % BITS_PER_UNIT, !sign, gen_lowpart (SImode, dest_reg), - SImode, SImode, false); + SImode, SImode, false, NULL); if (extracted != dest_reg) emit_move_insn (dest_reg, gen_lowpart (SImode, extracted)); |