]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[AArch64] Fix indentation.
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Tue, 22 Apr 2014 13:19:44 +0000 (13:19 +0000)
committerMarcus Shawcroft <mshawcroft@gcc.gnu.org>
Tue, 22 Apr 2014 13:19:44 +0000 (13:19 +0000)
From-SVN: r209627

gcc/ChangeLog
gcc/config/aarch64/aarch64.c

index 3a46e6f66b8e853275dcba32f8cb953e343a50f6..809601a33a2321e22ef86ce08715c60829d2d5f6 100644 (file)
@@ -1,3 +1,8 @@
+2014-04-22  Marcus Shawcroft  <marcus.shawcroft@arm.com>
+
+       * config/aarch64/aarch64.c (aarch64_initial_elimination_offset):
+       Fix indentation.
+
 2014-04-22  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * machmode.h (bitwise_mode_for_mode): Declare.
index 10793ddbed6313b97fc704ae6ab0287d42df06c5..e83e7216f32c7e9fedb12c08007d2f5b547244f1 100644 (file)
@@ -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;
 }