This is the mail archive of the gcc-bugs@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: Another bogus change



I checked in this patch, after verifying this allowed the compiler to
bootstrap on i686-linux-gnu (modulo the ch/typeck.c) issue.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

Sun Oct 31 20:27:45 1999  Mark Mitchell  <mark@codesourcery.com>

	* stmt.c (expand_value_return): Fix typo in this change:

Index: stmt.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/stmt.c,v
retrieving revision 1.105
diff -c -p -r1.105 stmt.c
*** stmt.c	1999/11/01 01:11:21	1.105
--- stmt.c	1999/11/01 04:16:47
*************** expand_value_return (val)
*** 2692,2699 ****
  
    if (return_reg != val)
      {
- #ifdef PROMOTE_FUNCTION_RETURN
        tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
        int unsignedp = TREE_UNSIGNED (type);
        enum machine_mode old_mode
  	= DECL_MODE (DECL_RESULT (current_function_decl));
--- 2692,2699 ----
  
    if (return_reg != val)
      {
        tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
+ #ifdef PROMOTE_FUNCTION_RETURN
        int unsignedp = TREE_UNSIGNED (type);
        enum machine_mode old_mode
  	= DECL_MODE (DECL_RESULT (current_function_decl));


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