diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-13 17:14:09 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-13 17:14:09 +0000 |
commit | 3ed275a69c65d1f323feab80baf7f4f4e961783d (patch) | |
tree | c30a57dca5c79311f6a8335e3a454cbbde51ee9e /gcc/c-tree.h | |
parent | 14338e9af85339a54add2fa90ecb4b9a1e9397bf (diff) | |
download | gcc-3ed275a69c65d1f323feab80baf7f4f4e961783d.tar.gz |
* c-typeck.c (comptypes, tagged_types_tu_compatible_p,
function_types_compatible_p, type_lists_compatible_p): Remove
flags parameter.
* c-tree.h (comptypes): Likewise.
(COMPARE_STRICT): Remove.
* c-decl.c, c-lang.c, c-parse.in, c-typeck.c, objc/objc-act.c: All
callers changed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83061 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index e698c871a12..e758c98afd8 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -214,14 +214,9 @@ extern bool c_warn_unused_global_decl (tree); /* in c-typeck.c */ -/* For use with comptypes. */ -enum { - COMPARE_STRICT = 0 -}; - extern tree require_complete_type (tree); extern int same_translation_unit_p (tree, tree); -extern int comptypes (tree, tree, int); +extern int comptypes (tree, tree); extern tree c_size_in_bytes (tree); extern bool c_mark_addressable (tree); extern void c_incomplete_type_error (tree, tree); |