OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PR target/51354
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr51354.c
1
/* PR target/51354 */
2
3
extern void abort (void);
4
5
typedef int __attribute__ ((aligned (32))) ai;
6
7
void foo (int *x, ai * y);
8
9
int
10
bar (int x)
11
{
12
if (x == 12346)
13
return 24;
14
ai i;
15
foo (__builtin_alloca (x), &i);
16
return 128;
17
}