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 target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
980226-1.c
blob
d5587c71b3c80329adf61b56d1f32c3a6e93a7b8
1
/* { dg-do compile } */
2
/* { dg-options -O2 } */
3
4
extern
int
printf
(
const char
*, ...);
5
extern
double
bar
(
double
);
6
7
int
8
baz
(
double
d
)
9
{
10
double
e
=
bar
(
d
);
11
asm
volatile
(
""
: : :
"st"
);
12
return
printf
(
"%lg
\n
"
,
e
);
13
}