summaryrefslogtreecommitdiff
path: root/gcc/genpeep.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/genpeep.c')
-rw-r--r--gcc/genpeep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c
index 6d70cbad5a4..4f0861f4471 100644
--- a/gcc/genpeep.c
+++ b/gcc/genpeep.c
@@ -146,10 +146,10 @@ match_rtx (x, path, fail_label)
struct link *path;
int fail_label;
{
- register RTX_CODE code;
- register int i;
- register int len;
- register const char *fmt;
+ RTX_CODE code;
+ int i;
+ int len;
+ const char *fmt;
struct link link;
if (x == 0)
@@ -364,7 +364,7 @@ static void
print_code (code)
RTX_CODE code;
{
- register const char *p1;
+ const char *p1;
for (p1 = GET_RTX_NAME (code); *p1; p1++)
putchar (TOUPPER(*p1));
}