diff options
author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-16 17:04:36 +0000 |
---|---|---|
committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-16 17:04:36 +0000 |
commit | 92a5032614bea30fbf033ff0dc34cf585348aa11 (patch) | |
tree | ae5f73a18aa45a459bd7263f5681520d3bea3f74 /gcc | |
parent | 09cf0821e65704d705e9df4e127c10254bc77b26 (diff) | |
download | gcc-92a5032614bea30fbf033ff0dc34cf585348aa11.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39766 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/mips/abi64.h | 4 | ||||
-rw-r--r-- | gcc/resource.c | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35ecb4b14ff..82a9df47fc8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +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. + 2001-02-16 Jason Merrill <jason@redhat.com> * dwarf2out.c (add_bound_info): Don't crash if SAVE_EXPR_RTL is diff --git a/gcc/config/mips/abi64.h b/gcc/config/mips/abi64.h index 95e7d82b9fc..835f853411f 100644 --- a/gcc/config/mips/abi64.h +++ b/gcc/config/mips/abi64.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler. 64 bit ABI support. - Copyright (C) 1994, 1995, 1996, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996, 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of GNU CC. @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ #undef SUBTARGET_TARGET_OPTIONS #define SUBTARGET_TARGET_OPTIONS \ { "abi=", &mips_abi_string, \ - "Speciy ABI to use"}, + "Specify ABI to use"}, #undef STACK_BOUNDARY #define STACK_BOUNDARY \ diff --git a/gcc/resource.c b/gcc/resource.c index 772dad765f5..8266321c95a 100644 --- a/gcc/resource.c +++ b/gcc/resource.c @@ -1,5 +1,5 @@ /* Definitions for computing resource usage of specific insns. - Copyright (C) 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU CC. @@ -176,7 +176,7 @@ next_insn_no_annul (insn) } /* Given X, some rtl, and RES, a pointer to a `struct resource', mark - which resources are references by the insn. If INCLUDE_DELAYED_EFFECTS + 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. */ |