aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/parse.h
diff options
context:
space:
mode:
authorJoseph Myers <jsm@polyomino.org.uk>2004-06-21 13:37:46 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2004-06-21 13:37:46 +0100
commitb40410b9083d960fa5ca34def27dc1c2ee61c077 (patch)
tree7b1da446bf66f5879b6e982e36c900e25860b6ec /gcc/java/parse.h
parent3a5b9284da6acc309118a04dcba3a1cbca2ecdd4 (diff)
downloadgcc-b40410b9083d960fa5ca34def27dc1c2ee61c077.zip
gcc-b40410b9083d960fa5ca34def27dc1c2ee61c077.tar.gz
gcc-b40410b9083d960fa5ca34def27dc1c2ee61c077.tar.bz2
tree-alias-common.h (struct tree_alias_ops): Change ip and ip_partial to unsigned int.
* tree-alias-common.h (struct tree_alias_ops): Change ip and ip_partial to unsigned int. fortran: * trans.h (stmtblock_t): Change has_scope to unsigned int. java: * jcf.h (struct JCF): Change java_source, right_zip and finished to unsigned int. * lex.h (struct java_lexer): Change hit_eof, read_anything, byte_swap and use_fallback to unsigned int. * parse.h (struct _jdep): Change flag0 to unsigned int. From-SVN: r83430
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r--gcc/java/parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index bedf706..cf62dae 100644
--- a/gcc/java/parse.h
+++ b/gcc/java/parse.h
@@ -479,7 +479,7 @@ enum jdep_code {
typedef struct _jdep {
ENUM_BITFIELD(jdep_code) kind : 8; /* Type of patch */
- int flag0 : 1; /* Some flags */
+ unsigned int flag0 : 1; /* Some flags */
tree decl; /* Tied decl/or WFL */
tree solv; /* What to solve */
tree wfl; /* Where thing to resolve where found */