* c-tree.h: Add prototyp for c_sizeof_nowarn.
authorAndreas Jaeger <aj@suse.de>
Mon, 27 Aug 2001 17:07:48 +0000 (19:07 +0200)
committerAndreas Jaeger <aj@gcc.gnu.org>
Mon, 27 Aug 2001 17:07:48 +0000 (19:07 +0200)
From-SVN: r45196

gcc/ChangeLog
gcc/c-tree.h

index d9cb360e829482282a86ada44c25438ef8a97f91..55be851aa7caa4aa1aa4fa7f5b825993b6bb8214 100644 (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.
index df3b7feee8b62b3c7790cb185f9db7f458bddc59..45d14f706b629c3fa317d7605149bef69050508d 100644 (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 *));