This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Patch] Trivial gas fix of -mall on Alpha


A trivial little patch to make -mall really mean 'all'.

Best Regards,


--George

2002-08-06  George France <france@handhelds.org>

        /gas/ChangeLog
        * config/tc-alpha.c (cpu_types): fixed -mall on Alpha to
        really mean "all".

Index: gas/config/tc-alpha.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-alpha.c,v
retrieving revision 1.46
diff -u -p -r1.46 tc-alpha.c
--- gas/config/tc-alpha.c       14 Aug 2002 13:27:06 -0000      1.46
+++ gas/config/tc-alpha.c       20 Aug 2002 22:00:31 -0000
@@ -598,7 +598,7 @@ cpu_types[] =
   { "ev67", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
   { "ev68", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
 
-  { "all", AXP_OPCODE_BASE },
+  { "all", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
   { 0, 0 }
 };
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]