sh.c (sh_expand_prologue): Remove unnecessary comment.
authorKaz Kojima <kkojima@gcc.gnu.org>
Wed, 3 Nov 2010 22:03:30 +0000 (22:03 +0000)
committerKaz Kojima <kkojima@gcc.gnu.org>
Wed, 3 Nov 2010 22:03:30 +0000 (22:03 +0000)
* config/sh/sh.c (sh_expand_prologue): Remove unnecessary
comment.  Pass true to the last argument of output_stack_adjust.

From-SVN: r166278

gcc/ChangeLog
gcc/config/sh/sh.c

index 87d9bc4248252f60e7b97632190dda4eac5a96a3..f6ea181f4d545864499527a68accc33d41e78685 100644 (file)
@@ -1,3 +1,8 @@
+2010-11-03  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/sh.c (sh_expand_prologue): Remove unnecessary
+       comment.  Pass true to the last argument of output_stack_adjust.
+
 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR target/46295
index a1eec59153e3c9cc3327f535f4d893dc96b51492..efad46b12f1f33e48341e5e5c4167cb5f62b07a2 100644 (file)
@@ -6881,10 +6881,10 @@ sh_expand_prologue (void)
       && (NPARM_REGS(SImode)
          > crtl->args.info.arg_count[(int) SH_ARG_INT]))
     pretend_args = 0;
-  /* Dwarf2 module doesn't expect frame related insns here.  */
+
   output_stack_adjust (-pretend_args
                       - crtl->args.info.stack_regs * 8,
-                      stack_pointer_rtx, 0, NULL, false);
+                      stack_pointer_rtx, 0, NULL, true);
   stack_usage = pretend_args + crtl->args.info.stack_regs * 8;
 
   if (TARGET_SHCOMPACT && flag_pic && crtl->args.info.call_cookie)