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
Add a testcase for PR target/43668.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr43668.c
blob
b6c2114fd07e3e7f8df0afdf10c896deb9130314
1
/* PR target/43668 */
2
/* { dg-do run } */
3
/* { dg-options "-fschedule-insns" } */
4
5
int
foo
(
int
i
, ...) {
6
return
i
;
7
}
8
int
main
() {
9
return
foo
(
0
,
0.0
);
10
}