diff options
author | Jim Wilson <wilson@tuliptree.org> | 2003-01-28 03:24:12 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2003-01-28 03:24:12 +0000 |
commit | 69906a9b3a62b0d5fff4ecf31c8882183c02c0e3 (patch) | |
tree | 32fa6edf89028d88dcb38b2738fcfe85df3fd7f4 /gas | |
parent | 7f285245cf10febe41da72e99ff74dce2aedb562 (diff) | |
download | gdb-69906a9b3a62b0d5fff4ecf31c8882183c02c0e3.zip gdb-69906a9b3a62b0d5fff4ecf31c8882183c02c0e3.tar.gz gdb-69906a9b3a62b0d5fff4ecf31c8882183c02c0e3.tar.bz2 |
Patch from David Mosberger.
* config/tc-ia64.c (dot_vframesp): Correct error message.
(dot_vframepsp): Ditto.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ia64.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f216d86..04db2c2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-01-27 David Mosberger <davidm@hpl.hp.com> + + * config/tc-ia64.c (dot_vframesp): Correct error message. + (dot_vframepsp): Ditto. + 2003-01-27 Alexandre Oliva <aoliva@redhat.com> * configure.in (em): Set to irix on all Irix systems. diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index fa9ae00..a394564 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -3068,7 +3068,7 @@ dot_vframesp (dummy) add_unwind_entry (output_psp_sprel (e.X_add_number)); } else - as_bad ("First operand to .vframesp must be a general register"); + as_bad ("Operand to .vframesp must be a constant (sp-relative offset)"); } static void @@ -3084,7 +3084,7 @@ dot_vframepsp (dummy) add_unwind_entry (output_psp_sprel (e.X_add_number)); } else - as_bad ("First operand to .vframepsp must be a general register"); + as_bad ("Operand to .vframepsp must be a constant (psp-relative offset)"); } static void |