2007-05-16 Paul Brook <paul@codesourcery.com>
authorPaul Brook <paul@codesourcery.com>
Wed, 16 May 2007 21:06:54 +0000 (21:06 +0000)
committerPaul Brook <paul@codesourcery.com>
Wed, 16 May 2007 21:06:54 +0000 (21:06 +0000)
* config/tc-arm.c (v7m_psrs): Add uppercase PSR names and xpsr.

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

index 85bbe2608227d68eb6412343fe12dfec37e513a3..c82d1a7f852634fe37465453a2e55699b89a5fbd 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-16  Paul Brook  <paul@codesourcery.com>
+
+       * config/tc-arm.c (v7m_psrs): Add uppercase PSR names and xpsr.
+
 2007-05-15  Mark Shinwell  <shinwell@codesourcery.com>
 
        * app.c (do_scrub_chars): Don't damage \@ pseudo-variables.
index b558507dc4e8181bf55cc6fd865971013d363a65..2a9c7abb80547070798927a3cf78f575d675029e 100644 (file)
@@ -14499,20 +14499,21 @@ static const struct asm_psr psrs[] =
 /* Table of V7M psr names.  */
 static const struct asm_psr v7m_psrs[] =
 {
-  {"apsr",     0 },
-  {"iapsr",    1 },
-  {"eapsr",    2 },
-  {"psr",      3 },
-  {"ipsr",     5 },
-  {"epsr",     6 },
-  {"iepsr",    7 },
-  {"msp",      8 },
-  {"psp",      9 },
-  {"primask",  16},
-  {"basepri",  17},
-  {"basepri_max", 18},
-  {"faultmask",        19},
-  {"control",  20}
+  {"apsr",       0 }, {"APSR",         0 },
+  {"iapsr",      1 }, {"IAPSR",        1 },
+  {"eapsr",      2 }, {"EAPSR",        2 },
+  {"psr",        3 }, {"PSR",          3 },
+  {"xpsr",       3 }, {"XPSR",         3 }, {"xPSR",     3 },
+  {"ipsr",       5 }, {"IPSR",         5 },
+  {"epsr",       6 }, {"EPSR",         6 },
+  {"iepsr",      7 }, {"IEPSR",        7 },
+  {"msp",        8 }, {"MSP",          8 },
+  {"psp",        9 }, {"PSP",          9 },
+  {"primask",    16}, {"PRIMASK",      16},
+  {"basepri",    17}, {"BASEPRI",      17},
+  {"basepri_max", 18}, {"BASEPRI_MAX", 18},
+  {"faultmask",          19}, {"FAULTMASK",    19},
+  {"control",    20}, {"CONTROL",      20}
 };
 
 /* Table of all shift-in-operand names.         */