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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
sibcall-3.c
blob
8154e8f173108caa29a2dbc3837e9ceb9f8a324a
1
/* { dg-do compile { target ia32 } } */
2
/* { dg-options "-O2" } */
3
4
extern
5
#ifdef _WIN32
6
__declspec
(
dllimport
)
7
#endif
8
void
foo
(
int
a
);
9
10
void
bar
(
int
a
)
11
{
12
return
foo
(
a
);
13
}
14
15
/* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */