repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Split print_rtx into subroutines
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr36111.c
blob
498c39e1be49dc7dcd74d3861bc352f293c09e8b
1
/* { dg-do compile { target fpic } } */
2
/* { dg-options "-O2 -fpic" } */
3
4
typedef
struct
{
5
int
lock
;
6
int
pad0_
;
7
}
mutex_t
;
8
9
static
mutex_t main_arena
;
10
11
void
__malloc_check_init
()
12
{
13
for
(;;)
14
__asm__
__volatile__
(
""
:
"+m"
(
main_arena
.
lock
) );
15
}
16