* avr-tdep.c: Update copyright.
authorTheodore A. Roth <troth@openavr.org>
Fri, 23 Jan 2004 22:37:14 +0000 (22:37 +0000)
committerTheodore A. Roth <troth@openavr.org>
Fri, 23 Jan 2004 22:37:14 +0000 (22:37 +0000)
(avr_iaddr_p): Delete unused function.
(avr_saddr_p): Delete unused function.

gdb/ChangeLog
gdb/avr-tdep.c

index ddebc0493ff61b23b4bd67cef197db300b174de2..f3a468d331b2a21e5e9edd625bebd5d92ab9e2e6 100644 (file)
@@ -1,3 +1,9 @@
+2004-01-23  Theodore A. Roth  <troth@openavr.org>
+
+       * avr-tdep.c: Update copyright.
+       (avr_iaddr_p): Delete unused function.
+       (avr_saddr_p): Delete unused function.
+
 2004-01-23  David Carlton  <carlton@kealia.com>
 
        * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
index b381adfc5beb73d217d9f2ca25ead3111b4eb9f4..cf231faff6ff112effcd34f506183117751ef9c4 100644 (file)
@@ -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)
 {
This page took 0.026261 seconds and 4 git commands to generate.