URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [alignof.C] - Rev 816
Compare with Previous | Blame | View Log
// { dg-do run }
extern "C" void abort();
struct S
{
char c;
double d;
};
template <class T>
void foo(T)
{
if (__alignof__(T) != __alignof__(S))
abort();
}
int main()
{
foo(S());
}