diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-06-21 13:37:46 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-06-21 13:37:46 +0100 |
commit | b40410b9083d960fa5ca34def27dc1c2ee61c077 (patch) | |
tree | 7b1da446bf66f5879b6e982e36c900e25860b6ec /gcc/tree-alias-common.h | |
parent | 3a5b9284da6acc309118a04dcba3a1cbca2ecdd4 (diff) | |
download | gcc-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/tree-alias-common.h')
-rw-r--r-- | gcc/tree-alias-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-alias-common.h b/gcc/tree-alias-common.h index bf3cfcb..ec93ce3 100644 --- a/gcc/tree-alias-common.h +++ b/gcc/tree-alias-common.h @@ -105,11 +105,11 @@ struct tree_alias_ops void *data; /* Interprocedural. */ - int ip:1; + unsigned int ip:1; /* Can do conservative interprocedural analysis if we save the * info. */ - int ip_partial:1; + unsigned int ip_partial:1; }; |