Commit b40410b9 by Joseph Myers Committed by Joseph Myers

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
parent 3a5b9284
2004-06-21 Joseph S. Myers <jsm@polyomino.org.uk>
* tree-alias-common.h (struct tree_alias_ops): Change ip and
ip_partial to unsigned int.
2004-06-21 Richard Henderson <rth@redhat.com> 2004-06-21 Richard Henderson <rth@redhat.com>
* c-common.c (verify_sequence_points): Export. * c-common.c (verify_sequence_points): Export.
......
2004-06-21 Joseph S. Myers <jsm@polyomino.org.uk>
* trans.h (stmtblock_t): Change has_scope to unsigned int.
2004-06-20 Steven G. Kargl <kargls@comcast.net> 2004-06-20 Steven G. Kargl <kargls@comcast.net>
* arith.c (gfc_range_check): correct complex underflow. * arith.c (gfc_range_check): correct complex underflow.
......
...@@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
typedef struct typedef struct
{ {
tree head; tree head;
int has_scope:1; unsigned int has_scope:1;
} }
stmtblock_t; stmtblock_t;
......
2004-06-21 Joseph S. Myers <jsm@polyomino.org.uk>
* 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.
2004-06-17 Ranjit Mathew <rmathew@hotmail.com> 2004-06-17 Ranjit Mathew <rmathew@hotmail.com>
Fixes PR java/13948 Fixes PR java/13948
......
...@@ -106,9 +106,9 @@ typedef struct JCF GTY(()) { ...@@ -106,9 +106,9 @@ typedef struct JCF GTY(()) {
unsigned char * GTY ((skip)) buffer_end; unsigned char * GTY ((skip)) buffer_end;
unsigned char * GTY ((skip)) read_ptr; unsigned char * GTY ((skip)) read_ptr;
unsigned char * GTY ((skip)) read_end; unsigned char * GTY ((skip)) read_end;
int java_source : 1; unsigned int java_source : 1;
int right_zip : 1; unsigned int right_zip : 1;
int finished : 1; unsigned int finished : 1;
jcf_filbuf_t filbuf; jcf_filbuf_t filbuf;
PTR GTY ((skip)) read_state; PTR GTY ((skip)) read_state;
const char *filename; const char *filename;
......
...@@ -115,7 +115,7 @@ struct java_lexer ...@@ -115,7 +115,7 @@ struct java_lexer
unicode_t unget_value; unicode_t unget_value;
/* If nonzero, we've hit EOF. Used only by java_get_unicode(). */ /* If nonzero, we've hit EOF. Used only by java_get_unicode(). */
int hit_eof : 1; unsigned int hit_eof : 1;
/* Name of the character encoding we're using. */ /* Name of the character encoding we're using. */
const char *encoding; const char *encoding;
...@@ -123,13 +123,13 @@ struct java_lexer ...@@ -123,13 +123,13 @@ struct java_lexer
#ifdef HAVE_ICONV #ifdef HAVE_ICONV
/* Nonzero if we've read any bytes. We only recognize the /* Nonzero if we've read any bytes. We only recognize the
byte-order-marker (BOM) as the first word. */ byte-order-marker (BOM) as the first word. */
int read_anything : 1; unsigned int read_anything : 1;
/* Nonzero if we have to byte swap. */ /* Nonzero if we have to byte swap. */
int byte_swap : 1; unsigned int byte_swap : 1;
/* Nonzero if we're using the fallback decoder. */ /* Nonzero if we're using the fallback decoder. */
int use_fallback : 1; unsigned int use_fallback : 1;
/* The handle for the iconv converter we're using. */ /* The handle for the iconv converter we're using. */
iconv_t handle; iconv_t handle;
......
...@@ -479,7 +479,7 @@ enum jdep_code { ...@@ -479,7 +479,7 @@ enum jdep_code {
typedef struct _jdep { typedef struct _jdep {
ENUM_BITFIELD(jdep_code) kind : 8; /* Type of patch */ 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 decl; /* Tied decl/or WFL */
tree solv; /* What to solve */ tree solv; /* What to solve */
tree wfl; /* Where thing to resolve where found */ tree wfl; /* Where thing to resolve where found */
......
...@@ -105,11 +105,11 @@ struct tree_alias_ops ...@@ -105,11 +105,11 @@ struct tree_alias_ops
void *data; void *data;
/* Interprocedural. */ /* Interprocedural. */
int ip:1; unsigned int ip:1;
/* Can do conservative interprocedural analysis if we save the /* Can do conservative interprocedural analysis if we save the
* info. */ * info. */
int ip_partial:1; unsigned int ip_partial:1;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment