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
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
pr60663.c
blob
b79b830e1a9db1bf039221421ee497d1c0fca4a7
1
/* PR rtl-optimization/60663 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -march=armv7-a" } */
4
5
int
6
foo
(
void
)
7
{
8
unsigned
i
,
j
;
9
asm
(
"%0 %1"
:
"=r"
(
i
),
"=r"
(
j
));
10
return
i
;
11
}