URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [ext/] [alignof2.C] - Rev 693
Compare with Previous | Blame | View Log
// PRs 16387 and 16389// We were treating alignof (sa.a) as alignof (typeof (sa.a)), which is// wrong for some fields.// { dg-do run }extern "C" void abort();struct A{double a;} sa;struct B{char c;double b;} sb;int main(){if (__alignof (sa) != __alignof (sa.a)|| __alignof (sb) != __alignof (sb.b))abort();}
