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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr100590.c
blob
8d1e1a0d3064f3bfaf867d4258c8ecd677be4649
1
/* PR rtl-optimization/100590 */
2
/* { dg-do compile { target lra } } */
3
/* { dg-options "-O1 -fno-dce -w" } */
4
5
int
6
foo
(
void
)
7
{
8
int
x
;
9
asm goto
(
""
:
"+r"
(
x
) : : :
lab
);
10
return
0
;
11
lab
:
12
return
1
;
13
}