Patch from David Mosberger.
authorJim Wilson <wilson@tuliptree.org>
Tue, 28 Jan 2003 03:24:12 +0000 (03:24 +0000)
committerJim Wilson <wilson@tuliptree.org>
Tue, 28 Jan 2003 03:24:12 +0000 (03:24 +0000)
* config/tc-ia64.c (dot_vframesp): Correct error message.
(dot_vframepsp): Ditto.

gas/ChangeLog
gas/config/tc-ia64.c

index f216d868bc666365f116c85c9907a5ddd44c2078..04db2c2bd569b500996631e40ab8a947229aeab6 100644 (file)
@@ -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.
index fa9ae005bd47f0f471c02bf6337f3f9d9be21106..a3945649c5aea4c53612a648b2c48cd6361b494e 100644 (file)
@@ -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
This page took 0.201502 seconds and 4 git commands to generate.