URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [pr35802.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-options "-O2 -march=74kc -mgp32" } */ __thread int x __attribute__((tls_model("initial-exec"))); __thread int y __attribute__((tls_model("initial-exec"))); int bar (void); NOMIPS16 void foo (int n) { if (n > 5) { y = 0; do x += bar (); while (n--); } }