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
* arm.c (FL_WBUF): Define.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
crash31.C
blob
83cdf2addc0f2d74e4f6f6ec42ffbc3bb1390309
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
struct mbuf {
4
struct mbuf *next;
5
};
6
7
void* malloc(int);
8
struct mbuf *
9
mbuf_allocate(int size)
10
{
11
struct mbuf *bp;
12
13
bp = (struct mbuf *) malloc( 10 /*(unsigned) (size + sizeof(struct mbuf))*/);
14
return bp;
15
16
}