From: jakub Date: Wed, 13 Apr 2016 13:57:29 +0000 (+0000) Subject: PR debug/70628 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b68df76cedc18ce385ceb4e12925af2d2705c1ff;p=thirdparty%2Fgcc.git PR debug/70628 * explow.c (convert_memory_address_addr_space_1): Formatting fix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234937 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d0953bc3920..1f833985cba2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2016-04-13 Jakub Jelinek + PR debug/70628 + * explow.c (convert_memory_address_addr_space_1): Formatting fix. + PR middle-end/70633 * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if gimplification turns some element into non-constant. diff --git a/gcc/explow.c b/gcc/explow.c index 48acd36b405e..e0ce201b86bb 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;