diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-06-13 18:14:09 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-06-13 18:14:09 +0100 |
commit | 132da1a5aa17e496019e1603ce3d59fe1e61d44d (patch) | |
tree | c30a57dca5c79311f6a8335e3a454cbbde51ee9e /gcc/c-lang.c | |
parent | 118a3a8ba8497b0b68ebe0f875ce940d84a7315e (diff) | |
download | gcc-132da1a5aa17e496019e1603ce3d59fe1e61d44d.zip gcc-132da1a5aa17e496019e1603ce3d59fe1e61d44d.tar.gz gcc-132da1a5aa17e496019e1603ce3d59fe1e61d44d.tar.bz2 |
c-typeck.c (comptypes, [...]): Remove flags parameter.
* 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.
From-SVN: r83061
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index cf422cb..3bdd246 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -216,7 +216,7 @@ finish_file (void) int c_types_compatible_p (tree x, tree y) { - return comptypes (TYPE_MAIN_VARIANT (x), TYPE_MAIN_VARIANT (y), 0); + return comptypes (TYPE_MAIN_VARIANT (x), TYPE_MAIN_VARIANT (y)); } static void c_initialize_diagnostics (diagnostic_context *context) |