sima/autoconf/
sima/hosts/i386/
sima/mudlib/
sima/mudlib/kernel/
sima/mudlib/obj/
sima/mudlib/sys/
sima/synhash/mips/
diff -c -p gcc-2.7.0/ChangeLog gcc-2.7.0-x/ChangeLog
*** gcc-2.7.0/ChangeLog	Sat Jul  8 01:54:05 1995
--- gcc-2.7.0-x/ChangeLog	Thu Jul 13 23:06:08 1995
***************
*** 1,3 ****
--- 1,10 ----
+ Thu Jul 13 22:53:04 1995  J"orn Rennecke  (amylaar@meolyon.hanse.de)
+ 	* c-common.c(decl_attributes): bug fix for A_ALIGNED
+ 
+ Sat Jul  8 10:33:59 1995  J"orn Rennecke  (amylaar@meolyon.hanse.de)
+ 	* New optimization option -fomit-default-branch . Most of it
+ 	is in expand_end_case(). Doc in gcc.1
+ 
  Fri Jun 16 06:54:03 1995  Richard Kenner  (kenner@vlsi1.ultra.nyu.edu)
  
  	* alpha.c (alpha_builtin_saveregs): Use ptr_mode and conversions
diff -c -p gcc-2.7.0/c-common.c gcc-2.7.0-x/c-common.c
*** gcc-2.7.0/c-common.c	Sat Jul  8 01:54:15 1995
--- gcc-2.7.0-x/c-common.c	Thu Jul 13 22:56:27 1995
*************** decl_attributes (node, attributes, prefi
*** 510,516 ****
  	    if (exact_log2 (align) == -1)
  	      error ("requested alignment is not a power of 2");
  	    else if (is_type)
! 	      TYPE_ALIGN (TREE_TYPE (decl)) = align;
  	    else if (TREE_CODE (decl) != VAR_DECL
  		     && TREE_CODE (decl) != FIELD_DECL)
  	      error_with_decl (decl,
--- 510,517 ----
  	    if (exact_log2 (align) == -1)
  	      error ("requested alignment is not a power of 2");
  	    else if (is_type)
! 	      /* don't use TREE_TYPE(decl), decl might be 0 . */
! 	      TYPE_ALIGN (type) = align;
  	    else if (TREE_CODE (decl) != VAR_DECL
  		     && TREE_CODE (decl) != FIELD_DECL)
  	      error_with_decl (decl,