]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.dg/abi/mangle20-2.C
2009-06-15 Rafael Avila de Espindola <espindola@google.com>
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / abi / mangle20-2.C
CommitLineData
1cd6548d 1// { dg-do compile }
2// { dg-options "-fabi-version=1 -Wabi" }
3
4// Copyright (C) 2003 Free Software Foundation, Inc.
5// Contributed by Nathan Sidwell 15 Dec 2003 <nathan@codesourcery.com>
6
7// PR 9043
8// mangled array types in templates
9
ecd88073 10template <int I> void f(int (*)[2]) {}
1cd6548d 11template <int I> void g(int (*)[I+2]) {}
12
ecd88073 13template void f<1>(int (*)[2]); // { dg-warning "mangled name" }
e638f2e5 14// { dg-final { scan-assembler "\n_?_Z1fILi1EEvPALi2E_i\[: \t\n\]" } }
1cd6548d 15template void g<1>(int (*)[3]);
e638f2e5 16// { dg-final { scan-assembler "\n_?_Z1gILi1EEvPAplT_Li2E_i\[: \t\n\]" } }