]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: update mangling
authorJason Merrill <jason@redhat.com>
Mon, 11 Dec 2023 19:05:48 +0000 (14:05 -0500)
committerJason Merrill <jason@redhat.com>
Mon, 11 Dec 2023 19:10:55 +0000 (14:10 -0500)
Since r14-6064-gc3f281a0c1ca50 this test was checking for the wrong
mangling, but it still passed on targets that support ABI compatibility
aliases.  Let's avoid generating those aliases when checking mangling.

gcc/ChangeLog:

* common.opt: Add comment.

gcc/testsuite/ChangeLog:

* g++.dg/cpp2a/concepts-explicit-inst1.C: Specify ABI v18.
* g++.dg/cpp2a/concepts-explicit-inst1a.C: New test.

gcc/common.opt
gcc/testsuite/g++.dg/cpp2a/concepts-explicit-inst1.C
gcc/testsuite/g++.dg/cpp2a/concepts-explicit-inst1a.C [new file with mode: 0644]

index 5eb5ecff04bd692372d26ea9777a00b252bd349f..d263a959df3805efb6bde3705429caf4a9a299c5 100644 (file)
@@ -1020,6 +1020,7 @@ Driver Undocumented
 ;
 ; 19: Emits ABI tags if needed in structured binding mangled names.
 ;     Ignores cv-quals on [[no_unique_object]] members.
+;     Mangles constraints on function templates.
 ;     Default in G++ 14.
 ;
 ; Additional positive integers will be assigned as new versions of
index 5cbf64a8cd3d1f960da5803cae511f851b93161c..b66e919e880c9545f33fb60910e8693895f59fb3 100644 (file)
@@ -1,4 +1,5 @@
 // { dg-do compile { target c++20 } }
+// { dg-additional-options "-fabi-version=18 -fabi-compat-version=18" }
 // { dg-final { scan-assembler "_Z1gI1XEvT_" } }
 // { dg-final { scan-assembler "_Z1gI1YEvT_" } }
 // { dg-final { scan-assembler "_Z1gIiEvT_" } }
diff --git a/gcc/testsuite/g++.dg/cpp2a/concepts-explicit-inst1a.C b/gcc/testsuite/g++.dg/cpp2a/concepts-explicit-inst1a.C
new file mode 100644 (file)
index 0000000..feb31f9
--- /dev/null
@@ -0,0 +1,24 @@
+// { dg-do compile { target c++20 } }
+// { dg-additional-options "-fabi-version=0 -fabi-compat-version=0" }
+// { dg-final { scan-assembler "_Z1gITk1C1YEvT_" } }
+// { dg-final { scan-assembler "_Z1gITk1D1XEvT_" } }
+// { dg-final { scan-assembler "_Z1gIiEvT_" } }
+
+template<typename T>
+  concept C = __is_class(T);
+
+template<typename T>
+  concept D = C<T> && __is_empty(T);
+
+struct X { };
+struct Y { int n; };
+
+template<typename T> void g(T) { } // #1
+template<C T> void g(T) { } // #2
+template<D T> void g(T) { } // #3
+
+template void g(int); // Instantiate #1
+template void g(X); // Instantitae #3
+template void g(Y); // Instantiate #2
+
+int main() { }