2000-06-26 Scott Bambrough <scottb@netwinder.org>
authorScott Bambrough <scottb@netwinder.org>
Mon, 26 Jun 2000 16:50:29 +0000 (16:50 +0000)
committerScott Bambrough <scottb@netwinder.org>
Mon, 26 Jun 2000 16:50:29 +0000 (16:50 +0000)
* arm-dis.c (regnames): Add an additional register set to match
the set used by GCC.  Make it the default.

opcodes/ChangeLog
opcodes/arm-dis.c

index 1060d30b75952f1c494bf6b70cc5c4534383e926..ceeff9352dbaa531e5967e7f5a174d432cdae70b 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-26  Scott Bambrough  <scottb@netwinder.org>
+
+       * arm-dis.c (regnames): Add an additional register set to match
+       the set used by GCC.  Make it the default.
+
 2000-06-22  Alan Modra  <alan@linuxcare.com.au>
 
        * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
index a3e7112b3fc1767447fbd02e6afa586f56406d1e..4c6552e6ccd016a2beec972e95ee4bc56f93183b 100644 (file)
@@ -60,6 +60,8 @@ static arm_regname regnames[] =
 {
   { "raw" , "Select raw register names",
     { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"}},
+  { "gcc",  "Select register names used by GCC",
+    { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "sl",  "fp",  "ip",  "sp",  "lr",  "pc" }},
   { "std",  "Select register names used in ARM's ISA documentation",
     { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "sp",  "lr",  "pc" }},
   { "apcs", "Select register names used in the APCS",
@@ -70,7 +72,7 @@ static arm_regname regnames[] =
     { "a1", "a2", "a3", "a4", "v1", "v2", "v3", "WR", "v5", "SB", "SL",  "FP",  "IP",  "SP",  "LR",  "PC" }}
 };
 
-/* Default to standard register name set.  */
+/* Default to GCC register name set.  */
 static unsigned int regname_selected = 1;
 
 #define NUM_ARM_REGNAMES  NUM_ELEM (regnames)
This page took 0.042318 seconds and 4 git commands to generate.