diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 48d7020..0fc1f5f 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -9434,7 +9434,8 @@ gen_lowpart_for_combine (enum machine_mode omode, rtx x) if (WORDS_BIG_ENDIAN) offset = MAX (isize, UNITS_PER_WORD) - MAX (osize, UNITS_PER_WORD); - /* Adjust the address so that the address-after-the-data is unchanged. */ + /* Adjust the address so that the address-after-the-data is + unchanged. */ if (BYTES_BIG_ENDIAN) offset -= MIN (UNITS_PER_WORD, osize) - MIN (UNITS_PER_WORD, isize); |