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
[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr66819-4.c
blob
18b2ccf8120e625d5aedfd0111877df588ff1678
1
/* { dg-do compile { target ia32 } } */
2
/* { dg-options "-O2 -mregparm=3" } */
3
/* { dg-final { scan-assembler-not "call" } } */
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
}