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
testsuite: RISC-V: Ignore pr118170.c for E ABI
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr100590.c
blob
64cb717ed0eec806bd8c6734b3bb61ecab205bd8
1
/* PR rtl-optimization/100590 */
2
/* { dg-do compile { target asm_goto_with_outputs } } */
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
}