URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [s390/] [pr36822.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* This used to ICE on s390 due to bug in the definition of the 'R' constraint which replaced the 'm' constraint (together with 'T') while adding z10 support. */ /* { dg-do compile } */ /* { dg-options "-O" } */ int boo() { struct { unsigned char pad[4096]; unsigned long bar; } *foo; asm volatile( "" : "=m" (*(unsigned long long*)(foo->bar)) : "a" (&foo->bar)); }
Go to most recent revision | Compare with Previous | Blame | View Log