Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / pr36111.c
blob498c39e1be49dc7dcd74d3861bc352f293c09e8b
1 /* { dg-do compile { target fpic } } */
2 /* { dg-options "-O2 -fpic" } */
4 typedef struct {
5 int lock;
6 int pad0_;
7 } mutex_t;
9 static mutex_t main_arena;
11 void __malloc_check_init()
13 for(;;)
14 __asm__ __volatile__ ("": "+m"(main_arena.lock) );