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]

fix alpha build


        * config/alpha/alpha.c (alpha_setup_incoming_varargs): Fix
        conditional compilation guard.

Index: alpha.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/alpha/alpha.c,v
retrieving revision 1.309
diff -c -p -d -u -r1.309 alpha.c
--- alpha.c	7 Jun 2003 17:11:41 -0000	1.309
+++ alpha.c	8 Jun 2003 05:12:53 -0000
@@ -6399,8 +6399,9 @@ alpha_build_va_list ()
    not the most efficient way to implement varargs with just one register
    class, but it isn't worth doing anything more efficient in this rare
    case.  */
-#ifndef TARGET_ABI_UNICOSMK
-void   
+
+#if TARGET_ABI_OSF
+void
 alpha_setup_incoming_varargs(cum, mode, type, pretend_size, no_rtl)
      CUMULATIVE_ARGS cum;
      enum machine_mode mode ATTRIBUTE_UNUSED;


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