diff options
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 96cdaa9..11fa6f3 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -3705,7 +3705,7 @@ procfs_fetch_registers (int regno) { if ((regno >= 0 && regno < FP0_REGNUM) || regno == PC_REGNUM || - (NPC_REGNUM >= 0 && regno == NPC_REGNUM) || + (DEPRECATED_NPC_REGNUM >= 0 && regno == DEPRECATED_NPC_REGNUM) || regno == DEPRECATED_FP_REGNUM || regno == SP_REGNUM) return; /* not a floating point register */ @@ -3779,7 +3779,7 @@ procfs_store_registers (int regno) { if ((regno >= 0 && regno < FP0_REGNUM) || regno == PC_REGNUM || - (NPC_REGNUM >= 0 && regno == NPC_REGNUM) || + (DEPRECATED_NPC_REGNUM >= 0 && regno == DEPRECATED_NPC_REGNUM) || regno == DEPRECATED_FP_REGNUM || regno == SP_REGNUM) return; /* not a floating point register */ |