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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83506.c
blob
b138c9d3ae71cba2ee27e4d03a0a4407dba488fd
1
/* PR ipa/83506 */
2
/* { dg-do compile { target pthread } } */
3
/* { dg-options "-O1 -ftree-parallelize-loops=2 -fno-ipa-pure-const" } */
4
5
unsigned int
6
foo
(
unsigned int
x
,
int
y
)
7
{
8
while
(
y
<
1
)
9
{
10
x
*=
3
;
11
++
y
;
12
}
13
return
x
;
14
}