Remove redundant bit from "fa" and "da" flags
authorNick Clifton <nickc@redhat.com>
Fri, 19 Jan 2001 04:35:29 +0000 (04:35 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 19 Jan 2001 04:35:29 +0000 (04:35 +0000)
gas/ChangeLog
gas/config/tc-arm.c

index cf497c322f2bb8d9d5781346ae6b4c4cbaa9db78..db6841eae146a6be01576e8815e992c392ae6481 100644 (file)
@@ -1,3 +1,9 @@
+2001-01-18  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-arm.c (ldm_flags): Remove redundant bit from "fa" and
+       "da" flags.
+       (stm_flags): Remove redundant bit from "ed" and "da" flags.
+
 2001-01-18  Alexandre Oliva  <aoliva@redhat.com>
 
        * configure.in (cpu_type, arch): Match i386 too.
index 80318fa365a4aaa1a0044b7cf18920e8c9024fc4..e2e452efa66cf550f87d94f24c1111a047788dc5 100644 (file)
@@ -344,24 +344,24 @@ static CONST struct asm_flg ldm_flags[] =
   {"ed", 0x01800000},
   {"fd", 0x00800000},
   {"ea", 0x01000000},
-  {"fa", 0x08000000},
+  {"fa", 0x00000000},
   {"ib", 0x01800000},
   {"ia", 0x00800000},
   {"db", 0x01000000},
-  {"da", 0x08000000},
+  {"da", 0x00000000},
   {NULL, 0}
 };
 
 static CONST struct asm_flg stm_flags[] =
 {
-  {"ed", 0x08000000},
+  {"ed", 0x00000000},
   {"fd", 0x01000000},
   {"ea", 0x00800000},
   {"fa", 0x01800000},
   {"ib", 0x01800000},
   {"ia", 0x00800000},
   {"db", 0x01000000},
-  {"da", 0x08000000},
+  {"da", 0x00000000},
   {NULL, 0}
 };
 
This page took 0.042833 seconds and 4 git commands to generate.