diff options
author | Jakub Jelinek <jakub@redhat.com> | 2016-04-13 15:57:29 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2016-04-13 15:57:29 +0200 |
commit | b88990be30c676e36843aaab71ce98639c49711d (patch) | |
tree | c177fb4f5b91e9c5214acc2a8023720c106b6f29 /gcc/explow.c | |
parent | 042c8364769ff1642c2227779bceade4b3f14112 (diff) | |
download | gcc-b88990be30c676e36843aaab71ce98639c49711d.zip gcc-b88990be30c676e36843aaab71ce98639c49711d.tar.gz gcc-b88990be30c676e36843aaab71ce98639c49711d.tar.bz2 |
re PR debug/70628 (ICE in get_reg_rtx, at emit-rtl.c:1025)
PR debug/70628
* explow.c (convert_memory_address_addr_space_1): Formatting fix.
From-SVN: r234937
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 48acd36..e0ce201 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -343,9 +343,9 @@ convert_memory_address_addr_space_1 (machine_mode to_mode ATTRIBUTE_UNUSED, { temp = convert_memory_address_addr_space_1 (to_mode, XEXP (x, 0), as, in_const, no_emit); - return temp ? gen_rtx_fmt_ee (GET_CODE (x), to_mode, - temp, XEXP (x, 1)) - : temp; + return (temp ? gen_rtx_fmt_ee (GET_CODE (x), to_mode, + temp, XEXP (x, 1)) + : temp); } break; |