URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [ext/] [alignof1.C] - Rev 154
Compare with Previous | Blame | View Log
// { dg-do run }
// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>, 2002-07-20
// Bug PR/7363.
template<typename T>
int my_alignof()
{
return __alignof__ (T);
}
template<typename>
struct X { };
int main()
{
return !my_alignof<X<void> >();
}