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
2013-10-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr50764.c
blob
e3b8da8670f8adea7069463a9fd884eccb43b5b9
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fsched2-use-superblocks -ftree-tail-merge" } */
3
4
typedef
int
aligned
__attribute__
((
aligned
(
64
)));
5
extern
void
abort
(
void
);
6
7
int
bar
(
void
*
p
);
8
9
void
10
foo
(
void
)
11
{
12
char
*
p
=
__builtin_alloca
(
13
);
13
aligned i
;
14
15
if
(
bar
(
p
) ||
bar
(&
i
))
16
abort
();
17
}