* config/tc-hppa.c (md_begin): Disable "-R" option to fold
authorJeff Law <law@redhat.com>
Fri, 29 Oct 1993 21:09:43 +0000 (21:09 +0000)
committerJeff Law <law@redhat.com>
Fri, 29 Oct 1993 21:09:43 +0000 (21:09 +0000)
        text and data segments.  Warn user "-R" is unsupported on the
        PA.

gas/config/tc-hppa.c

index 34230e76d81b5872ca902cc2870d9c2547bc666b..584f9e3bad34d5a34557f6cb0890cd014fb32977 100644 (file)
@@ -1343,6 +1343,12 @@ md_begin ()
   last_call_info = NULL;
   call_info_root = NULL;
 
+  /* Folding of text and data segments fails miserably on the PA.
+     Warn user and disable "-R" option.  */
+  as_warn ("-R option not supported on this target.");
+  flag_readonly_data_in_text = 0;
+  flagseen['R'] = 0;
+
   pa_spaces_begin ();
 
   op_hash = hash_new ();
This page took 0.031737 seconds and 4 git commands to generate.