Fix obvious typo (completly -> completely) and update copyrights as needed
This commit is contained in:
parent
0a064bb6f9
commit
9564ee9f56
6 changed files with 11 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
/* Find a variable's value in memory, for GDB, the GNU debugger.
|
||||
|
||||
Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
|
||||
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003 Free Software
|
||||
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software
|
||||
Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
@ -263,7 +263,7 @@ value_of_register (int regnum, struct frame_info *frame)
|
|||
char raw_buffer[MAX_REGISTER_SIZE];
|
||||
enum lval_type lval;
|
||||
|
||||
/* User registers lie completly outside of the range of normal
|
||||
/* User registers lie completely outside of the range of normal
|
||||
registers. Catch them early so that the target never sees them. */
|
||||
if (regnum >= NUM_REGS + NUM_PSEUDO_REGS)
|
||||
return value_of_user_reg (regnum, frame);
|
||||
|
|
|
@ -1286,7 +1286,7 @@ legacy_get_prev_frame (struct frame_info *this_frame)
|
|||
prev = FRAME_OBSTACK_ZALLOC (struct frame_info);
|
||||
prev->level = this_frame->level + 1;
|
||||
|
||||
/* Do not completly wire it in to the frame chain. Some (bad) code
|
||||
/* Do not completely wire it in to the frame chain. Some (bad) code
|
||||
in INIT_FRAME_EXTRA_INFO tries to look along frame->prev to pull
|
||||
some fancy tricks (of course such code is, by definition,
|
||||
recursive).
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Definitions for dealing with stack frames, for GDB, the GNU debugger.
|
||||
|
||||
Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996,
|
||||
1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||
1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
|
@ -344,7 +344,7 @@ extern CORE_ADDR get_frame_args_address (struct frame_info *);
|
|||
extern int frame_relative_level (struct frame_info *fi);
|
||||
|
||||
/* Return the frame's type. Some are real, some are signal
|
||||
trampolines, and some are completly artificial (dummy). */
|
||||
trampolines, and some are completely artificial (dummy). */
|
||||
|
||||
enum frame_type
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* User Interface Events.
|
||||
|
||||
Copyright 1999, 2001, 2002 Free Software Foundation, Inc.
|
||||
Copyright 1999, 2001, 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
Contributed by Cygnus Solutions.
|
||||
|
||||
|
@ -96,7 +96,7 @@ extern void selected_frame_level_changed_event (int level);
|
|||
extern void selected_thread_changed_event (int thread_num);
|
||||
|
||||
|
||||
/* When GDB_EVENTS are not being used, completly disable them. */
|
||||
/* When GDB_EVENTS are not being used, completely disable them. */
|
||||
|
||||
#if !WITH_GDB_EVENTS
|
||||
#define breakpoint_create_event(b) 0
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# User Interface Events.
|
||||
# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
# Copyright 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
|
||||
#
|
||||
# Contributed by Cygnus Solutions.
|
||||
#
|
||||
|
@ -239,7 +239,7 @@ done
|
|||
echo ""
|
||||
echo ""
|
||||
cat <<EOF
|
||||
/* When GDB_EVENTS are not being used, completly disable them. */
|
||||
/* When GDB_EVENTS are not being used, completely disable them. */
|
||||
EOF
|
||||
echo ""
|
||||
echo "#if !WITH_GDB_EVENTS"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Cache and manage the values of registers for GDB, the GNU debugger.
|
||||
|
||||
Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
|
||||
2001, 2002 Free Software Foundation, Inc.
|
||||
2001, 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
|
@ -459,7 +459,7 @@ regcache_cpy_no_passthrough (struct regcache *dst, struct regcache *src)
|
|||
gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
|
||||
/* NOTE: cagney/2002-05-17: Don't let the caller do a no-passthrough
|
||||
move of data into the current_regcache(). Doing this would be
|
||||
silly - it would mean that valid_p would be completly invalid. */
|
||||
silly - it would mean that valid_p would be completely invalid. */
|
||||
gdb_assert (dst != current_regcache);
|
||||
memcpy (dst->registers, src->registers, dst->descr->sizeof_raw_registers);
|
||||
memcpy (dst->register_valid_p, src->register_valid_p,
|
||||
|
|
Loading…
Reference in a new issue