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
/
pr68937-3.c
blob
6d8e40ff769dfdf9d20ad077b730e9e7e441f5bb
1
/* { dg-do compile { target { *-*-linux* && ia32 } } } */
2
/* { dg-options "-O2 -fpic -fno-plt -mregparm=3" } */
3
4
extern
void
bar
(
int
,
int
,
int
);
5
6
void
7
foo
(
int
a
,
int
b
,
int
c
)
8
{
9
bar
(
a
,
b
,
c
);
10
bar
(
a
,
b
,
c
);
11
}
12
13
/* { dg-final { scan-assembler-not "jmp\[ \t\]*.bar@GOT" } } */