This is the mail archive of the gcc@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]

Re: egcs-971114 fails on alpha-dec-osf4.0


A similar change as Richard posted last week is needed for VMS:

Tue Nov 20 16:50:52 1997  Klaus Kaempf  <kkaempf@progis.de>

	* vms.h (ASM_OUTPUT_ADDR_VEC_ELT): Add an L for the local label
	to correspond with the change to ASM_GENERATE_INTERNAL_LABEL.

===================================================================
RCS file: alpha/RCS/vms.h,v
retrieving revision 1.6
diff -c -r1.6 alpha/vms.h
*** alpha/vms.h	1997/11/09 14:10:16	1.6
--- alpha/vms.h	1997/11/20 15:43:30
***************
*** 242,248 ****
  
  #undef ASM_OUTPUT_ADDR_VEC_ELT
  #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
!   fprintf (FILE, "\t.quad $%d\n", (VALUE) + 32)
  
  #undef READONLY_DATA_SECTION
  #define READONLY_DATA_SECTION readonly_section
--- 242,248 ----
  
  #undef ASM_OUTPUT_ADDR_VEC_ELT
  #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
!   fprintf (FILE, "\t.quad $L%d\n", (VALUE))
  
  #undef READONLY_DATA_SECTION
  #define READONLY_DATA_SECTION readonly_section


-- 
proGIS Software                 E-Mail: kkaempf@progis.de
Dipl.-Inform. Klaus K"ampf      Fax:    0241-47067-29
Jakobstr. 117                   Voice:  0241-47067-11
D-52064 Aachen                  WWW:	http://www.progis.de



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