URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [abi/] [bitfield6.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-w -fabi-version=0" }
#include <limits>
union U {
int i: 4096;
};
int main () {
if (sizeof (U) * std::numeric_limits<unsigned char>::digits != 4096)
return 1;
}
Go to most recent revision | Compare with Previous | Blame | View Log