[ARC] Fix setting private elf flags when parsing .cpu.
authorClaudiu Zissulescu <claziss@synopsys.com>
Tue, 12 Apr 2016 12:51:57 +0000 (14:51 +0200)
committerClaudiu Zissulescu <claziss@synopsys.com>
Wed, 13 Apr 2016 14:48:11 +0000 (16:48 +0200)
gas/
2016-04-12  Claudiu Zissulescu  <claziss@synopsys.com>

* config/tc-arc.c (mach_type_specified_p): Change type to
bfd_boolean.
(arc_option): Set private flags when parsing cpu pseudo-op.
(md_parse_option): Set mach_type_specified_p to TRUE.

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

index 42ce34a2e964edad04e15a51d58a5b6aa8db68c4..92f3286d7f0fe6b6524cb1a9791290992a269c38 100644 (file)
@@ -1,3 +1,10 @@
+2016-04-12  Claudiu Zissulescu  <claziss@synopsys.com>
+
+       * config/tc-arc.c (mach_type_specified_p): Change type to
+       bfd_boolean.
+       (arc_option): Set private flags when parsing cpu pseudo-op.
+       (md_parse_option): Set mach_type_specified_p to TRUE.
+
 2016-04-13  Nick Clifton  <nickc@redhat.com>
 
        PR target/19937
index 7486924ae843b19e3ab0685e88384cad9ef8a3fc..17e0b9aa2298aaafff7f7a94bed0af4c178728ae 100644 (file)
@@ -396,8 +396,8 @@ static unsigned arc_features;
 /* The default architecture.  */
 static int arc_mach_type;
 
-/* Non-zero if the cpu type has been explicitly specified.  */
-static int mach_type_specified_p = 0;
+/* TRUE if the cpu type has been explicitly specified.  */
+static bfd_boolean mach_type_specified_p = FALSE;
 
 /* The hash table of instruction opcodes.  */
 static struct hash_control *arc_opcode_hash;
@@ -902,6 +902,9 @@ arc_option (int ignore ATTRIBUTE_UNUSED)
 
       if (!bfd_set_arch_mach (stdoutput, bfd_arch_arc, mach))
        as_fatal (_("could not set architecture and machine"));
+
+      /* Set elf header flags.  */
+      bfd_set_private_flags (stdoutput, arc_eflag);
     }
   else
     if (arc_mach_type != mach)
@@ -3156,7 +3159,7 @@ md_parse_option (int c, const char *arg ATTRIBUTE_UNUSED)
     case OPTION_MCPU:
       {
         arc_select_cpu (arg);
-        mach_type_specified_p = 1;
+        mach_type_specified_p = TRUE;
        break;
       }
 
This page took 0.028625 seconds and 4 git commands to generate.