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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr66819-4.c
blob
143360d0de38d3c7d22f5d4d785af96fa5c45704
1
/* { dg-do compile { target ia32 } } */
2
/* { dg-options "-O2 -mregparm=3" } */
3
/* { dg-final { scan-assembler-not {call[ \t]+_?bar} } } */
4
5
#include <stdarg.h>
6
7
void
(*
bar
)(
int
,
va_list
);
8
9
void
foo
(
int
i
,
va_list
args
)
10
{
11
bar
(
i
,
args
);
12
}