* avr-tdep.c: Update copyright.
(avr_iaddr_p): Delete unused function. (avr_saddr_p): Delete unused function.
This commit is contained in:
parent
ad445c2c17
commit
5b828b6b4b
2 changed files with 7 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Target-dependent code for Atmel AVR, for GDB.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
@ -226,12 +226,6 @@ avr_make_iaddr (CORE_ADDR x)
|
|||
return ((x) | AVR_IMEM_START);
|
||||
}
|
||||
|
||||
static int
|
||||
avr_iaddr_p (CORE_ADDR x)
|
||||
{
|
||||
return (((x) & AVR_MEM_MASK) == AVR_IMEM_START);
|
||||
}
|
||||
|
||||
/* FIXME: TRoth: Really need to use a larger mask for instructions. Some
|
||||
devices are already up to 128KBytes of flash space.
|
||||
|
||||
|
@ -251,12 +245,6 @@ avr_make_saddr (CORE_ADDR x)
|
|||
return ((x) | AVR_SMEM_START);
|
||||
}
|
||||
|
||||
static int
|
||||
avr_saddr_p (CORE_ADDR x)
|
||||
{
|
||||
return (((x) & AVR_MEM_MASK) == AVR_SMEM_START);
|
||||
}
|
||||
|
||||
static CORE_ADDR
|
||||
avr_convert_saddr_to_raw (CORE_ADDR x)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue