aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>1992-07-23 17:00:21 +0000
committerMike Stump <mrs@gcc.gnu.org>1992-07-23 17:00:21 +0000
commita25432837c9ef7b23ed59edbbd915777c39190cb (patch)
tree95cf06d031bb6822d20c4060bf09b4f07337cc37 /gcc
parent8f3d7f00680fbc3bd26aef015fb1ebc41725484b (diff)
downloadgcc-a25432837c9ef7b23ed59edbbd915777c39190cb.zip
gcc-a25432837c9ef7b23ed59edbbd915777c39190cb.tar.gz
gcc-a25432837c9ef7b23ed59edbbd915777c39190cb.tar.bz2
add an explicit int to a register decl
From-SVN: r1671
Diffstat (limited to 'gcc')
-rw-r--r--gcc/c-lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index a353ba9..74b57a0 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1602,7 +1602,7 @@ yylex ()
char_constant:
{
register int result = 0;
- register num_chars = 0;
+ register int num_chars = 0;
unsigned width = TYPE_PRECISION (char_type_node);
int max_chars;