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
/
amd64-abi-8.c
blob
58aa3fd1c28beee4fcc1d66695c68b7cf8767573
1
/* { dg-do compile { target { ! ia32 } } } */
2
/* { dg-options "-O2 -mno-sse -mskip-rax-setup" } */
3
/* { dg-final { scan-assembler-not "xorl\[\\t \]*\\\%eax,\[\\t \]*%eax" } } */
4
5
void
foo
(
const char
*, ...);
6
7
void
8
test1
(
void
)
9
{
10
foo
(
"%d"
,
20
);
11
}
12
13
int
14
test2
(
void
)
15
{
16
foo
(
"%d"
,
20
);
17
return
3
;
18
}