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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr59034-1.c
blob
a4f04d10b9a73d5fe440927ec766e997ccd50b7e
1
/* { dg-do compile { target { ! ia32 } } } */
2
/* { dg-require-effective-target maybe_x32 } */
3
/* { dg-options "-O -mx32 -mtune=corei7 -maddress-mode=short" } */
4
5
extern
int
foo
(
int
, ...);
6
int
bar
(
void
) {
7
long double
l
=
1.2345
E6
;
8
foo
(
0
,
l
);
9
return
0
;
10
}