diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2019-05-28 07:21:07 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2019-05-28 07:21:07 +0000 |
commit | eabf2b44483427d54be93ae7628065aa08c4a1e6 (patch) | |
tree | bf92cada7dec61f9161e78b9a70842d9ed7c5515 /gcc/ada/gcc-interface/decl.c | |
parent | 6a10fedad0d8a7099156b5218728f1fa09f345aa (diff) | |
download | gcc-eabf2b44483427d54be93ae7628065aa08c4a1e6.zip gcc-eabf2b44483427d54be93ae7628065aa08c4a1e6.tar.gz gcc-eabf2b44483427d54be93ae7628065aa08c4a1e6.tar.bz2 |
decl.c (intrin_arglists_compatible_p): Do not return false if the internal builtin uses a variable list.
* gcc-interface/decl.c (intrin_arglists_compatible_p): Do not return
false if the internal builtin uses a variable list.
From-SVN: r271679
Diffstat (limited to 'gcc/ada/gcc-interface/decl.c')
-rw-r--r-- | gcc/ada/gcc-interface/decl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c index ed015ba..9082d44 100644 --- a/gcc/ada/gcc-interface/decl.c +++ b/gcc/ada/gcc-interface/decl.c @@ -9174,9 +9174,9 @@ intrin_arglists_compatible_p (intrin_binding_t * inb) if (!ada_type && !btin_type) break; - /* If one list is shorter than the other, they fail to match. */ - if (!ada_type || !btin_type) - return false; + /* If the internal builtin uses a variable list, accept anything. */ + if (!btin_type) + break; /* If we're done with the Ada args and not with the internal builtin args, or the other way around, complain. */ |