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]

Add ERROR_MARK case to output_constant


This fixes the majority of the G++ failures I get on my machine.

Wed Dec  5 16:03:04 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

	* varasm.c (output_constant, case ERROR_MARK): New case.

*** varasm.c	2001/12/05 22:37:30	1.234
--- varasm.c	2001/12/05 22:39:40
*************** output_constant (exp, size, align)
*** 4543,4546 ****
--- 4543,4549 ----
        return;
  
+     case ERROR_MARK:
+       return;
+ 
      default:
        abort ();


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