mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
c8ecdda6b6
Makes the comment match the macro name in the #define/#ifdef. gdb/ChangeLog: 2020-02-05 Christian Biesinger <cbiesinger@google.com> * ppc-nbsd-tdep.h: Fix macro name in #endif comment. Change-Id: If7b2e49e65495b8eb9ed7b6c9a11277579a93a05
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* Target-dependent code for NetBSD/powerpc.
|
|
|
|
Copyright (C) 2004-2020 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef PPC_NBSD_TDEP_H
|
|
#define PPC_NBSD_TDEP_H
|
|
|
|
struct regset;
|
|
|
|
/* Register offsets for NetBSD/powerpc. */
|
|
extern struct ppc_reg_offsets ppcnbsd_reg_offsets;
|
|
|
|
/* Register sets for NetBSD/powerpc. */
|
|
extern const struct regset ppcnbsd_gregset;
|
|
extern const struct regset ppcnbsd_fpregset;
|
|
|
|
#endif /* PPC_NBSD_TDEP_H */
|