aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-15 13:38:03 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-15 13:38:03 +0000
commit8e2e89f78ac366d74ac9a0e75afe056073589ef1 (patch)
tree15c488cfd0892394f03a3a880f8a6027ac7d4155 /gcc/recog.c
parentb531087a3826b2cee37655af1725fe243fd898fb (diff)
downloadgcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.zip
gcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.tar.gz
gcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.tar.bz2
read-rtl.c: Fix formatting.
* read-rtl.c: Fix formatting. * real.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * rtlanal.c: Likewise. From-SVN: r48870
Diffstat (limited to 'gcc/recog.c')
-rw-r--r--gcc/recog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/recog.c b/gcc/recog.c
index 652038a..ec0ec88 100644
--- a/gcc/recog.c
+++ b/gcc/recog.c
@@ -1,6 +1,6 @@
/* Subroutines used by or related to instruction recognition.
Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
- 1999, 2000, 2001 Free Software Foundation, Inc.
+ 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GCC.
@@ -157,7 +157,7 @@ check_asm_operands (x)
const char *c = constraints[i];
if (c[0] == '%')
c++;
- if (ISDIGIT ((unsigned char)c[0]) && c[1] == '\0')
+ if (ISDIGIT ((unsigned char) c[0]) && c[1] == '\0')
c = constraints[c[0] - '0'];
if (! asm_operand_ok (operands[i], c))
@@ -2253,7 +2253,7 @@ preprocess_constraints ()
break;
default:
- op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) REG_CLASS_FROM_LETTER ((unsigned char)c)];
+ op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) REG_CLASS_FROM_LETTER ((unsigned char) c)];
break;
}
}