diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-30 21:15:24 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-30 21:15:24 +0000 |
commit | 7df26e929ae1dc262282ed4f996606d45c4c78f6 (patch) | |
tree | bb8bd32c6247e0535315fd74787bccb5ca5bb734 /gcc/f/stw.h | |
parent | cc493e81a7d328b584057cc36083999e41e20340 (diff) | |
download | gcc-7df26e929ae1dc262282ed4f996606d45c4c78f6.tar.gz |
* stw.h (struct _ffestw_): Change type of uses_ to int.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31143 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/stw.h')
-rw-r--r-- | gcc/f/stw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/f/stw.h b/gcc/f/stw.h index 58818a61bf2..554d047e611 100644 --- a/gcc/f/stw.h +++ b/gcc/f/stw.h @@ -70,7 +70,7 @@ struct _ffestw_ ffewhereLine line_; /* Where first token of statement triggering state */ ffewhereColumn col_; /* was seen in source file. */ - char uses_; /* # uses (new+use-kill calls). */ + int uses_; /* # uses (new+use-kill calls). */ ffestvState state_; int substate_; /* Used on a per-block-state basis. */ #if FFECOM_targetCURRENT == FFECOM_targetGCC |