* g++.dg/template/sizeof8.C: Don't assume 32bit pointers.

From-SVN: r85312
This commit is contained in:
Richard Henderson 2004-07-29 11:32:08 -07:00 committed by Richard Henderson
parent 13b52b9060
commit b3b7f0c9df
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-07-29 Richard Henderson <rth@redhat.com>
* g++.dg/template/sizeof8.C: Don't assume 32bit pointers.
2004-07-29 Mark Mitchell <mark@codesourcery.com>
* g++.dg/abi/inline1.C: New test.

View File

@ -6,4 +6,4 @@ template <int> struct S{};
template <int N> S<sizeof(new double[N])> f() {}
template S<4> f<2>();
template S<sizeof(void*)> f<2>();