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]

Minor VMS config file changes


2002-01-25  Douglas B Rupp  <rupp@gnat.com>

	* config/alpha/x-vms (version): Make static.

	* config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Fix error
	in previous checkin.

*** config/alpha/x-vms	2002/01/13 12:34:36	1.6
--- config/alpha/x-vms	2002/01/18 08:47:54
***************
*** 1,5 ****
  # Under VMS, directory names cannot contain dots.
! version=`echo $(gcc_version) | sed -e 's/\./_/g'`
  
  # Rules for linker and compiler wrappers.  These are only useful on
  # a VMS host.
--- 1,5 ----
  # Under VMS, directory names cannot contain dots.
! version:=$(shell echo $(gcc_version) | sed -e 's/\./_/g')
  
  # Rules for linker and compiler wrappers.  These are only useful on
  # a VMS host.

*** config/alpha/vms.h	2002/01/11 12:41:16	1.56
--- config/alpha/vms.h	2002/01/19 21:35:45
*************** do {									\
*** 413,426 ****
        (FS)->regs.reg[27].loc.offset = -pv->pdsc$l_size;			\
        (FS)->regs.reg[27].how = REG_SAVED_OFFSET;			\
        (FS)->regs.reg[26].loc.offset					\
! 	 = pv->pdsc$w_rsa_offset - pv->pdsc$l_size;			\
        (FS)->regs.reg[26].how = REG_SAVED_OFFSET;			\
  									\
        for (i = 0, j = 0; i < 32; i++)					\
  	if (1<<i & pv->pdsc$l_ireg_mask)				\
  	  {								\
  	    (FS)->regs.reg[i].loc.offset				\
! 	      = pv->pdsc$l_size - pv->pdsc$w_rsa_offset - 8 * j++;	\
  	    (FS)->regs.reg[i].how = REG_SAVED_OFFSET;			\
  	  }								\
  									\
--- 413,426 ----
        (FS)->regs.reg[27].loc.offset = -pv->pdsc$l_size;			\
        (FS)->regs.reg[27].how = REG_SAVED_OFFSET;			\
        (FS)->regs.reg[26].loc.offset					\
! 	 = -(pv->pdsc$l_size - pv->pdsc$w_rsa_offset);			\
        (FS)->regs.reg[26].how = REG_SAVED_OFFSET;			\
  									\
        for (i = 0, j = 0; i < 32; i++)					\
  	if (1<<i & pv->pdsc$l_ireg_mask)				\
  	  {								\
  	    (FS)->regs.reg[i].loc.offset				\
! 	      = -(pv->pdsc$l_size - pv->pdsc$w_rsa_offset - 8 * ++j);	\
  	    (FS)->regs.reg[i].how = REG_SAVED_OFFSET;			\
  	  }								\
  									\


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