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]

PATCH: Fix Miscellaneous Typographical Errors


gcc/ChangeLog:
2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>

        * resource.c (mark_referenced_resources): Fix typo in introductory
        comment.
        * config/mips/abi64.h (SUBTARGET_TARGET_OPTIONS): Fix typo in
        string constant.

gcc/cp/ChangeLog:
2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>

        * cp-tree.h: Fix typos in comments.

Tested on       i686-pc-linux-gnu (bootstrap only)
Approved by     Mark Mitchell (mark@codesourcery.com)
Applied to      mainline, i.e., head.

Thanks,
Jeffrey D. Oldham
oldham@codesourcery.com
Index: resource.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/resource.c,v
retrieving revision 1.38
diff -c -p -r1.38 resource.c
*** resource.c	2001/02/13 20:17:45	1.38
--- resource.c	2001/02/16 15:42:43
***************
*** 1,5 ****
  /* Definitions for computing resource usage of specific insns.
!    Copyright (C) 1999, 2000 Free Software Foundation, Inc.
  
  This file is part of GNU CC.
  
--- 1,5 ----
  /* Definitions for computing resource usage of specific insns.
!    Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
  
  This file is part of GNU CC.
  
*************** next_insn_no_annul (insn)
*** 176,182 ****
  }
  
  /* Given X, some rtl, and RES, a pointer to a `struct resource', mark
!    which resources are references by the insn.  If INCLUDE_DELAYED_EFFECTS
     is TRUE, resources used by the called routine will be included for
     CALL_INSNs.  */
  
--- 176,182 ----
  }
  
  /* Given X, some rtl, and RES, a pointer to a `struct resource', mark
!    which resources are referenced by the insn.  If INCLUDE_DELAYED_EFFECTS
     is TRUE, resources used by the called routine will be included for
     CALL_INSNs.  */
  
Index: cp/cp-tree.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/cp-tree.h,v
retrieving revision 1.575
diff -c -p -r1.575 cp-tree.h
*** cp-tree.h	2001/02/14 10:57:58	1.575
--- cp-tree.h	2001/02/16 15:42:46
*************** enum overload_flags { NO_SPECIAL = 0, DT
*** 3620,3626 ****
     TFF_CLASS_SCOPE: if possible, include the class-name part of a
          qualified-id.  This flag may be implied in some circumstances by
          TFF_NAMESPACE_SCOPE.
!    TFF_SCOPE: the combinaison of the two above.
     TFF_CHASE_TYPEDEF: print the original type-id instead of the typedef-name.
     TFF_DECL_SPECIFIERS: print decl-specifiers.
     TFF_CLASS_KEY_OR_ENUM: precede a class-type name (resp. enum name) with
--- 3620,3626 ----
     TFF_CLASS_SCOPE: if possible, include the class-name part of a
          qualified-id.  This flag may be implied in some circumstances by
          TFF_NAMESPACE_SCOPE.
!    TFF_SCOPE: the combination of the two above.
     TFF_CHASE_TYPEDEF: print the original type-id instead of the typedef-name.
     TFF_DECL_SPECIFIERS: print decl-specifiers.
     TFF_CLASS_KEY_OR_ENUM: precede a class-type name (resp. enum name) with
*************** enum overload_flags { NO_SPECIAL = 0, DT
*** 3628,3636 ****
     TFF_RETURN_TYPE: include function return type.
     TFF_FUNCTION_DEFAULT_ARGUMENTS: include function default parameter values.
     TFF_EXCEPTION_SPECIFICATION: show function exception specification.
!    TFF_TEMPLATE_HEADER: show the template<...> hearder in a
         template-declaration.
!    TFF_TEMPLATE_DEFAULT_ARGUMENTS: show template paramter default values.
     TFF_TEMPLATE_NAME: show only template-name.
     TFF_EXPR_IN_PARENS: Parenthesize expressions.  */
  
--- 3628,3636 ----
     TFF_RETURN_TYPE: include function return type.
     TFF_FUNCTION_DEFAULT_ARGUMENTS: include function default parameter values.
     TFF_EXCEPTION_SPECIFICATION: show function exception specification.
!    TFF_TEMPLATE_HEADER: show the template<...> header in a
         template-declaration.
!    TFF_TEMPLATE_DEFAULT_ARGUMENTS: show template parameter default values.
     TFF_TEMPLATE_NAME: show only template-name.
     TFF_EXPR_IN_PARENS: Parenthesize expressions.  */
  
Index: config/mips/abi64.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/mips/abi64.h,v
retrieving revision 1.15
diff -c -p -r1.15 abi64.h
*** abi64.h	2001/01/24 14:01:26	1.15
--- abi64.h	2001/02/16 15:42:47
***************
*** 1,5 ****
  /* Definitions of target machine for GNU compiler.  64 bit ABI support.
!    Copyright (C) 1994, 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
  
  This file is part of GNU CC.
  
--- 1,5 ----
  /* Definitions of target machine for GNU compiler.  64 bit ABI support.
!    Copyright (C) 1994, 1995, 1996, 1998, 1999, 2001 Free Software Foundation, Inc.
  
  This file is part of GNU CC.
  
*************** Boston, MA 02111-1307, USA.  */
*** 24,30 ****
  #undef SUBTARGET_TARGET_OPTIONS
  #define SUBTARGET_TARGET_OPTIONS \
    { "abi=", &mips_abi_string,						\
!       "Speciy ABI to use"},
  
  #undef STACK_BOUNDARY
  #define STACK_BOUNDARY \
--- 24,30 ----
  #undef SUBTARGET_TARGET_OPTIONS
  #define SUBTARGET_TARGET_OPTIONS \
    { "abi=", &mips_abi_string,						\
!       "Specify ABI to use"},
  
  #undef STACK_BOUNDARY
  #define STACK_BOUNDARY \

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