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/config/tc-ia64.c | |
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/config/tc-ia64.c')
-rw-r--r-- | gas/config/tc-ia64.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |