* c-tree.h: Add prototyp for c_sizeof_nowarn.

From-SVN: r45196
This commit is contained in:
Andreas Jaeger 2001-08-27 19:07:48 +02:00 committed by Andreas Jaeger
parent c96bd05e6b
commit 4a56401de4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-26 Andreas Jaeger <aj@suse.de>
* c-tree.h: Add prototyp for c_sizeof_nowarn.
2001-08-25 Dan Nicolaescu <dann@ics.uci.edu>
* ssa-ccp.c (ssa_const_prop): Free ssa_edges.

View File

@ -160,7 +160,7 @@ extern tree build_array_declarator PARAMS ((tree, tree, int, int));
extern tree build_enumerator PARAMS ((tree, tree));
#define c_build_type_variant(TYPE, CONST_P, VOLATILE_P) \
c_build_qualified_type (TYPE, \
c_build_qualified_type (TYPE, \
((CONST_P) ? TYPE_QUAL_CONST : 0) | \
((VOLATILE_P) ? TYPE_QUAL_VOLATILE : 0))
extern int c_decode_option PARAMS ((int, char **));
@ -218,6 +218,7 @@ extern void c_expand_decl_stmt PARAMS ((tree));
/* in c-typeck.c */
extern tree require_complete_type PARAMS ((tree));
extern int comptypes PARAMS ((tree, tree));
extern tree c_sizeof_nowarn PARAMS ((tree));
extern tree c_size_in_bytes PARAMS ((tree));
extern tree build_component_ref PARAMS ((tree, tree));
extern tree build_indirect_ref PARAMS ((tree, const char *));