From: Florian Weimer Date: Fri, 1 Dec 2023 07:10:12 +0000 (+0100) Subject: aarch64: Call named function in gcc.target/aarch64/aapcs64/ice_1.c X-Git-Tag: basepoints/gcc-15~4110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=989af9473d955f6f7b4e2ecfeb8a440d55bc1866;p=thirdparty%2Fgcc.git aarch64: Call named function in gcc.target/aarch64/aapcs64/ice_1.c This test looks like it intends to pass a small struct argument through both a non-variadic and variadic argument, but due to the typo, it does not achieve that. gcc/testsuite/ * gcc.target/aarch64/aapcs64/ice_1.c (foo): Call named. --- diff --git a/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_1.c b/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_1.c index 906ccebf6160..edc35db2f6ee 100644 --- a/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_1.c +++ b/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_1.c @@ -16,6 +16,6 @@ void unnamed (int, ...); void foo () { - name (0, aaaa); + named (0, aaaa); unnamed (0, aaaa); }