diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-08 04:51:16 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-08 04:51:16 +0000 |
commit | e94026dabe3924024adfc34b810069417f75c5d1 (patch) | |
tree | cc01394964ac75996779fc8fc5ebdb1781aeb69c /gcc/c-tree.h | |
parent | 532166a82e0a78a1e9add8f06eb5f6d8e71bc769 (diff) | |
download | gcc-e94026dabe3924024adfc34b810069417f75c5d1.tar.gz |
* c-typeck.c (type_lists_compatible_p): Use simple_type_promotes_to.
(self_promoting_type_p): Delete.
(self_promoting_args_p): Move ...
* c-common.c: ... here.
(c_common_nodes_and_builtins): Initialize lang_type_promotes_to.
(simple_type_promotes_to): New.
* builtins.c (lang_type_promotes_to): New.
(expand_builtin_va_arg): Use it to give diagnostic for illegal types.
* c-tree.h (C_PROMOTING_INTEGER_TYPE_P): Move ...
* c-common.h: ... here.
(self_promoting_args_p, simple_type_promotes_to): Declare.
* c-decl.c (duplicate_decls): Use simple_type_promotes_to.
(grokdeclarator): Likewise.
* tree.h (lang_type_promotes_to): Declare.
* cp-tree.h (C_PROMOTING_INTEGER_TYPE_P): Delete.
* typeck.c (self_promoting_args_p): Delete.
* gcc.dg/va-arg-1.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29180 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index a55785538c6..44ec800cc00 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -145,17 +145,6 @@ struct lang_type /* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */ #define DECL_C_BIT_FIELD(NODE) DECL_LANG_FLAG_4 (NODE) -/* Nonzero if the type T promotes to itself. - ANSI C states explicitly the list of types that promote; - in particular, short promotes to int even if they have the same width. */ -#define C_PROMOTING_INTEGER_TYPE_P(t) \ - (TREE_CODE ((t)) == INTEGER_TYPE \ - && (TYPE_MAIN_VARIANT (t) == char_type_node \ - || TYPE_MAIN_VARIANT (t) == signed_char_type_node \ - || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node \ - || TYPE_MAIN_VARIANT (t) == short_integer_type_node \ - || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node)) - /* In a VAR_DECL, means the variable is really an iterator. */ #define ITERATOR_P(D) (DECL_LANG_FLAG_4(D)) @@ -260,7 +249,6 @@ extern void incomplete_type_error PROTO((tree, tree)); Given two compatible ANSI C types, returns the merged type. */ extern tree common_type PROTO((tree, tree)); extern int comptypes PROTO((tree, tree)); -extern int self_promoting_args_p PROTO((tree)); extern tree c_sizeof PROTO((tree)); extern tree c_sizeof_nowarn PROTO((tree)); extern tree c_size_in_bytes PROTO((tree)); |