OSDN Git Service

2001-11-09 H.J. Lu <hjl@gnu.org>
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Nov 2001 08:53:18 +0000 (08:53 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Nov 2001 08:53:18 +0000 (08:53 +0000)
* config/mips/mips.c (mips_output_function_prologues): Cast
`tsize' to long for output.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46877 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mips/mips.c

index a0731e5..c7599d3 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-09  H.J. Lu <hjl@gnu.org>
+
+       * config/mips/mips.c (mips_output_function_prologues): Cast
+       `tsize' to long for output.
+
 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * c-lang.c (LANG_HOOKS_NAME): New.
index 284ed92..23491ca 100644 (file)
@@ -7145,7 +7145,7 @@ mips_output_function_prologue (file, size)
        {
          fprintf (file, "\t%s\t%s,%s,%ld\n",
                   (Pmode == DImode ? "dsubu" : "subu"),
-                  sp_str, sp_str, tsize);
+                  sp_str, sp_str, (long) tsize);
          fprintf (file, "\t.cprestore %ld\n", current_frame_info.args_size);
        }