diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-02-09 03:06:33 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-02-09 03:06:33 +0000 |
commit | e9277ae8d4b8ae0b5c03c0b6f71beebb88031e23 (patch) | |
tree | 879f1012dcdc2223fc7722b1c9cdfc82fb01c501 /gdb/sparclet-stub.c | |
parent | 1216fa2c08f748dbfb5c2680986190c5b7cc0281 (diff) | |
download | gdb-e9277ae8d4b8ae0b5c03c0b6f71beebb88031e23.zip gdb-e9277ae8d4b8ae0b5c03c0b6f71beebb88031e23.tar.gz gdb-e9277ae8d4b8ae0b5c03c0b6f71beebb88031e23.tar.bz2 |
From JTC: m32r-stub.c, sparcl-stub.c, sparclet-stub.c
(handle_exception): Return E01 instead of P01 when 'P' command fails.
Diffstat (limited to 'gdb/sparclet-stub.c')
-rw-r--r-- | gdb/sparclet-stub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/sparclet-stub.c b/gdb/sparclet-stub.c index 4d859f9..281ce14 100644 --- a/gdb/sparclet-stub.c +++ b/gdb/sparclet-stub.c @@ -50,7 +50,7 @@ * * g return the value of the CPU registers hex data or ENN * G set the value of the CPU registers OK or ENN - * P set the value of a single CPU register OK or P01 (???) + * P set the value of a single CPU register OK or ENN * * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN * MAA..AA,LLLL: Write LLLL bytes at address AA.AA OK or ENN @@ -938,7 +938,7 @@ handle_exception (registers) hex2mem (ptr, (char *)®isters[regno], 4, 0); else { - strcpy (remcomOutBuffer, "P01"); + strcpy (remcomOutBuffer, "E01"); break; } } |