diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-21 12:37:46 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-21 12:37:46 +0000 |
commit | 21073b5aa2cc723591b143f7e6730547cba6cc9b (patch) | |
tree | 7b1da446bf66f5879b6e982e36c900e25860b6ec /gcc/tree-alias-common.h | |
parent | 2569a1bed4c889254f528fdc227fad12430a8dec (diff) | |
download | gcc-21073b5aa2cc723591b143f7e6730547cba6cc9b.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83430 138bc75d-0d04-0410-961f-82ee72b054a4
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 bf3cfcb75cc..ec93ce3dad2 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; }; |