This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH 3.3 0203 i386/{i386.c,.... for UnixWare build failure.


Jan's patch in http://gcc.gnu.org/ml/gcc-patches/2003-02/msg00402.html
fixes the problem but is not in CVS for the 0210 snapshot.

The following version applies cleanly.

Thu Feb  6 15:46:01 CET 2003  Jan Hubicka  <jh@suse.cz>

             * i386.c (override_options): Compile when
DEFAULT_PCC_STRUCT_RETURN is
             not set.

--- config/i386/i386.c.orig   Tue Feb 11 16:15:49 2003
+++ config/i386/i386.c  Tue Feb 11 18:03:44 2003
@@ -1021,7 +1021,11 @@ override_options ()
       if (flag_asynchronous_unwind_tables == 2)
      flag_asynchronous_unwind_tables = 0;
       if (flag_pcc_struct_return == 2)
+#ifndef DEFAULT_PCC_STRUCT_RETURN
+     flag_pcc_struct_return = 1;
+#else
      flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
+#endif
     }

 #ifdef SUBTARGET_OVERRIDE_OPTIONS



Zack Weinberg <zack@codesourcery.com> on 12/02/2003 05:11:24

To:    "Rodney D Brown" <rbrown64@csc.com.au>
cc:    Jan Hubicka <jh@suse.cz>, gcc-patches@gcc.gnu.org
Subject:    Re: PATCH 3.3 0203 i386/{i386.c,.... for UnixWare build
       failure.


"Rodney D Brown" <rbrown64@csc.com.au> writes:

I've lost track of the state of play.  Has this problem been resolved?

zw






Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]