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
[PATCH v2] RISC-V: zero_extend(not) -> xor optimization [PR112398]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tm
/
20091013.c
blob
3c67a82e70fb6e1a973304c79d069f5662601578
1
/* { dg-do compile } */
2
/* { dg-options "-fgnu-tm -O2" } */
3
4
extern
long
ringo
(
long int
);
5
int
g
,
i
;
6
7
void
8
f
()
9
{
10
__transaction_relaxed
{
11
for
(
i
=
0
;
i
<
10
; ++
i
)
12
ringo
(
g
);
13
}
14
}