diff options
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) |