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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
pr65729.c
blob
85383b02eb5f2126e90b3215ec642c1427b87240
1
/* { dg-do compile } */
2
/* { dg-require-effective-target arm_hard_vfp_ok } */
3
/* { dg-options "-O2 -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16" } */
4
5
int
foo
(
void
)
6
{
7
double
x
=
0.0
;
8
asm
volatile
(
""
:
"+gw"
(
x
));
9
return
x
;
10
}