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
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
pr97608.c
blob
a2bc1301097c64965bb09c586efcdbdaa0742eb3
1
#include <stdlib.h>
2
3
void
*
f
(
void
)
4
{
5
void
*
p
=
malloc
(
8
);
6
if
(
p
==
NULL
)
7
abort
();
8
return
(
void
*) ((
char
*)
p
+
0
);
9
}
10
11
void
*
g
(
void
)
12
{
13
void
*
p
=
malloc
(
8
);
14
if
(
p
==
NULL
)
15
abort
();
16
return
(
void
*) ((
char
*)
p
+
1
);
17
}