aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/decl.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2019-05-28 07:21:07 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2019-05-28 07:21:07 +0000
commiteabf2b44483427d54be93ae7628065aa08c4a1e6 (patch)
treebf92cada7dec61f9161e78b9a70842d9ed7c5515 /gcc/ada/gcc-interface/decl.c
parent6a10fedad0d8a7099156b5218728f1fa09f345aa (diff)
downloadgcc-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.c6
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. */