aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2019-02-08 14:19:09 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2019-02-08 06:19:09 -0800
commit94e35e0b09978e7179c0079446a8939dbab15fa9 (patch)
tree2ced734c402486fbe89a92ffddfc22d8b5f7a0d3 /gcc/expr.c
parenta2d0c3bf8c4487249aae1e2b1927d71703bfcda4 (diff)
downloadgcc-94e35e0b09978e7179c0079446a8939dbab15fa9.zip
gcc-94e35e0b09978e7179c0079446a8939dbab15fa9.tar.gz
gcc-94e35e0b09978e7179c0079446a8939dbab15fa9.tar.bz2
expr.c: Correct indentations in expand_constructor
* expr.c (expand_constructor): Correct indentations. From-SVN: r268696
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index dcc9214..01ddf5a 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -8135,12 +8135,12 @@ expand_constructor (tree exp, rtx target, enum expand_modifier modifier,
if ((TREE_STATIC (exp)
&& ((mode == BLKmode
&& ! (target != 0 && safe_from_p (target, exp, 1)))
- || TREE_ADDRESSABLE (exp)
- || (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
- && (! can_move_by_pieces
- (tree_to_uhwi (TYPE_SIZE_UNIT (type)),
- TYPE_ALIGN (type)))
- && ! mostly_zeros_p (exp))))
+ || TREE_ADDRESSABLE (exp)
+ || (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
+ && (! can_move_by_pieces
+ (tree_to_uhwi (TYPE_SIZE_UNIT (type)),
+ TYPE_ALIGN (type)))
+ && ! mostly_zeros_p (exp))))
|| ((modifier == EXPAND_INITIALIZER || modifier == EXPAND_CONST_ADDRESS)
&& TREE_CONSTANT (exp)))
{