]> gcc.gnu.org Git - gcc.git/commitdiff
(output_prolog): Fix error in loading size of large stack frames.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 14 Jun 1994 21:26:00 +0000 (17:26 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 14 Jun 1994 21:26:00 +0000 (17:26 -0400)
From-SVN: r7455

gcc/config/rs6000/rs6000.c

index a606f1911fdccf72fd76312fd1793ea2cbd963fa..4a92acb6e07937a0ca292cdfccb67f9329a009e7 100644 (file)
@@ -1508,7 +1508,7 @@ output_prolog (file, size)
        asm_fprintf (file, "\t{stu|stwu} 1,%d(1)\n", - total_size);
       else
        {
-         asm_fprintf (file, "\t{cau 0,0,%d|lis 0,%d}\n\t{oril 0,0,%d|li 0,%d}\n",
+         asm_fprintf (file, "\t{cau 0,0,%d|lis 0,%d}\n\t{oril|ori} 0,0,%d\n",
                   (total_size >> 16) & 0xffff, total_size & 0xffff);
          if (TARGET_POWERPC)
            asm_fprintf (file, "\tsubf 12,0,1\n");
This page took 0.071514 seconds and 5 git commands to generate.