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
Fix gcc.dg/vect/bb-slp-77.c for x86
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr66978.c
blob
fe8d9d4860d2e7b0278fe553a426007d64405e69
1
/* { dg-do compile { target { ! ia32 } } } */
2
/* { dg-require-effective-target maybe_x32 } */
3
/* { dg-options "-O2 -mx32 -maddress-mode=short" } */
4
5
extern
int
foo
(
int
*);
6
int
7
bar
(
int
*
p
)
8
{
9
__attribute__
((
noinline
,
noclone
))
10
int
hack_digit
(
void
)
11
{
12
return
foo
(
p
);
13
}
14
return
hack_digit
();
15
}