From: Marcus Shawcroft Date: Tue, 22 Apr 2014 13:19:44 +0000 (+0000) Subject: [AArch64] Fix indentation. X-Git-Tag: releases/gcc-5.1.0~8009 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78c29983f2d170312a9c4543a0a04fa559e6e095;p=thirdparty%2Fgcc.git [AArch64] Fix indentation. From-SVN: r209627 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3a46e6f66b8e..809601a33a23 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-04-22 Marcus Shawcroft + + * config/aarch64/aarch64.c (aarch64_initial_elimination_offset): + Fix indentation. + 2014-04-22 Richard Sandiford * machmode.h (bitwise_mode_for_mode): Declare. diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 10793ddbed63..e83e7216f32c 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -4147,32 +4147,32 @@ aarch64_initial_elimination_offset (unsigned from, unsigned to) + crtl->outgoing_args_size + cfun->machine->saved_varargs_size); - frame_size = AARCH64_ROUND_UP (frame_size, STACK_BOUNDARY / BITS_PER_UNIT); - offset = frame_size; + frame_size = AARCH64_ROUND_UP (frame_size, STACK_BOUNDARY / BITS_PER_UNIT); + offset = frame_size; - if (to == HARD_FRAME_POINTER_REGNUM) - { - if (from == ARG_POINTER_REGNUM) - return offset - crtl->outgoing_args_size; + if (to == HARD_FRAME_POINTER_REGNUM) + { + if (from == ARG_POINTER_REGNUM) + return offset - crtl->outgoing_args_size; - if (from == FRAME_POINTER_REGNUM) - return cfun->machine->frame.saved_regs_size + get_frame_size (); - } + if (from == FRAME_POINTER_REGNUM) + return cfun->machine->frame.saved_regs_size + get_frame_size (); + } - if (to == STACK_POINTER_REGNUM) - { - if (from == FRAME_POINTER_REGNUM) - { - HOST_WIDE_INT elim = crtl->outgoing_args_size - + cfun->machine->frame.saved_regs_size - + get_frame_size () - - cfun->machine->frame.fp_lr_offset; - elim = AARCH64_ROUND_UP (elim, STACK_BOUNDARY / BITS_PER_UNIT); - return elim; - } - } + if (to == STACK_POINTER_REGNUM) + { + if (from == FRAME_POINTER_REGNUM) + { + HOST_WIDE_INT elim = crtl->outgoing_args_size + + cfun->machine->frame.saved_regs_size + + get_frame_size () + - cfun->machine->frame.fp_lr_offset; + elim = AARCH64_ROUND_UP (elim, STACK_BOUNDARY / BITS_PER_UNIT); + return elim; + } + } - return offset; + return offset; }