For SPARC V9, change icc to %icc, xcc to %xcc, fccX to %fccX.
authorJim Wilson <wilson@tuliptree.org>
Mon, 23 Nov 1992 23:40:18 +0000 (23:40 +0000)
committerJim Wilson <wilson@tuliptree.org>
Mon, 23 Nov 1992 23:40:18 +0000 (23:40 +0000)
gas/config/tc-sparc.c

index b5985d316e9c973db3ab3d7d9c0611b32307ca10..dd03ac0e59d00e553c39a54a2e4d29655347d27a 100644 (file)
@@ -820,9 +820,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "icc", 3) == 0)
+             if (strncmp (s, "%icc", 4) == 0)
                {
-                 s += 3;
+                 s += 4;
                  continue;
                }
              break;
@@ -832,9 +832,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "xcc", 3) == 0)
+             if (strncmp (s, "%xcc", 4) == 0)
                {
-                 s += 3;
+                 s += 4;
                  continue;
                }
              break;
@@ -844,9 +844,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "fcc0", 4) == 0)
+             if (strncmp (s, "%fcc0", 5) == 0)
                {
-                 s += 4;
+                 s += 5;
                  continue;
                }
              break;
@@ -856,9 +856,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "fcc1", 4) == 0)
+             if (strncmp (s, "%fcc1", 5) == 0)
                {
-                 s += 4;
+                 s += 5;
                  continue;
                }
              break;
@@ -868,9 +868,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "fcc2", 4) == 0)
+             if (strncmp (s, "%fcc2", 5) == 0)
                {
-                 s += 4;
+                 s += 5;
                  continue;
                }
              break;
@@ -880,9 +880,9 @@ sparc_ip (str)
                {
                  ++s;
                }
-             if (strncmp (s, "fcc3", 4) == 0)
+             if (strncmp (s, "%fcc3", 5) == 0)
                {
-                 s += 4;
+                 s += 5;
                  continue;
                }
              break;
This page took 0.028084 seconds and 4 git commands to generate.