diff options
author | Richard Henderson <rth@redhat.com> | 2003-06-01 21:46:37 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2003-06-01 21:46:37 +0000 |
commit | 44d8858367e916cf2e56c5d4e1f857ac9ca3d87f (patch) | |
tree | 1e948d4e76771238a5e86e475b4679a360f57d71 /gdb/alpha-tdep.c | |
parent | 310e9b6a18e38f1060a0c100d07f1b24c91ab655 (diff) | |
download | gdb-44d8858367e916cf2e56c5d4e1f857ac9ca3d87f.zip gdb-44d8858367e916cf2e56c5d4e1f857ac9ca3d87f.tar.gz gdb-44d8858367e916cf2e56c5d4e1f857ac9ca3d87f.tar.bz2 |
* alpha-tdep.h (ALPHA_FP_REGNUM): Remove.
* alpha-tdep.c (alpha_register_name): Remove vfp entry.
(alpha_cannot_fetch_register): Remove ALPHA_FP_REGNUM.
(alpha_cannot_store_register): Likewise.
* alphabsd-nat.c (fetch_inferior_registers): Don't set FP_REGNUM.
* alpha-nat.c (supply_gregset): Likewise.
* alphanbsd-tdep.c (fetch_core_registers): Likewise.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r-- | gdb/alpha-tdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c index 96ae120..96f8cf6 100644 --- a/gdb/alpha-tdep.c +++ b/gdb/alpha-tdep.c @@ -57,7 +57,7 @@ alpha_register_name (int regno) "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", "f27", "f28", "f29", "f30", "fpcr", - "pc", "vfp", "unique", + "pc", "", "unique" }; if (regno < 0) @@ -70,13 +70,13 @@ alpha_register_name (int regno) static int alpha_cannot_fetch_register (int regno) { - return (regno == ALPHA_FP_REGNUM || regno == ALPHA_ZERO_REGNUM); + return regno == ALPHA_ZERO_REGNUM; } static int alpha_cannot_store_register (int regno) { - return (regno == ALPHA_FP_REGNUM || regno == ALPHA_ZERO_REGNUM); + return regno == ALPHA_ZERO_REGNUM; } static int |