]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aarch64: Call named function in gcc.target/aarch64/aapcs64/ice_1.c
authorFlorian Weimer <fweimer@redhat.com>
Fri, 1 Dec 2023 07:10:12 +0000 (08:10 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Fri, 1 Dec 2023 07:10:12 +0000 (08:10 +0100)
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.

gcc/testsuite/gcc.target/aarch64/aapcs64/ice_1.c

index 906ccebf6160736f5bd597c2db7e7bf7d078fa5c..edc35db2f6eef0522a6a1efa2342674edb6d068b 100644 (file)
@@ -16,6 +16,6 @@ void unnamed (int, ...);
 
 void foo ()
 {
-  name (0, aaaa);
+  named (0, aaaa);
   unnamed (0, aaaa);
 }