* g++.dg/abi/mangle16.C: Adjust.

From-SVN: r58259
This commit is contained in:
Mark Mitchell 2002-10-17 21:39:58 +00:00 committed by Mark Mitchell
parent e31c295716
commit 2d05cd9641
2 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@ Thu Oct 17 19:12:58 CEST 2002 Jan Hubicka <jh@suse.cz>
2002-10-17 Mark Mitchell <mark@codesourcery.com>
* g++.dg/abi/mangle17.C: Adjust.
* g++.dg/abi/mangle16.C: Adjust.
* g++.dg/init/array8.C: New test.

View File

@ -10,5 +10,9 @@ template void f<7>(S<e + 1>);
template <int I> void g (S<e>) {}
template void g<7>(S<e>);
// { dg-final { scan-assembler _Z1fILi7EEv1SIXplL1E3ELi1EEE } }
// { dg-final { scan-assembler _Z1gILi7EEv1SIL1E3EE } }
template <int I> void h (S<I + 1>) {}
template void h<7>(S<7 + 1>);
// { dg-final { scan-assembler _Z1fILi7EEv1SILi4EE } }
// { dg-final { scan-assembler _Z1gILi7EEv1SILi3EE } }
// { dg-final { scan-assembler _Z1hILi7EEv1SIXplT_Li1EEE } }