aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorJim Wilson <wilson@tuliptree.org>1992-11-23 23:40:18 +0000
committerJim Wilson <wilson@tuliptree.org>1992-11-23 23:40:18 +0000
commit0d44b3d1f0b36d94283f27042f7d3fbd6d8b63ed (patch)
treeb4def5dcdbe4b1b00eab2a8eb053cfa9bf827821 /gas
parentfecdbc3cc5a5f047699cd26d310605bd746b0749 (diff)
downloadgdb-0d44b3d1f0b36d94283f27042f7d3fbd6d8b63ed.zip
gdb-0d44b3d1f0b36d94283f27042f7d3fbd6d8b63ed.tar.gz
gdb-0d44b3d1f0b36d94283f27042f7d3fbd6d8b63ed.tar.bz2
For SPARC V9, change icc to %icc, xcc to %xcc, fccX to %fccX.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-sparc.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c
index b5985d3..dd03ac0 100644
--- a/gas/config/tc-sparc.c
+++ b/gas/config/tc-sparc.c
@@ -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;