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
Revert r135493 & r135463
[official-gcc.git]
/
libmudflap
/
testsuite
/
libmudflap.c
/
pass16-frag.c
blob
99ede3f2138c79ff6e06d81ef71c1dfa004fee79
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <string.h>
4
int
main
()
5
{
6
struct
base
{
7
int
basic
;
8
};
9
10
struct
derived
{
11
struct
base common
;
12
char
extra
;
13
};
14
15
struct
base
*
bp
;
16
17
bp
= (
struct
base
*)
malloc
(
sizeof
(
struct
derived
));
18
19
bp
->
basic
=
10
;
20
((
struct
derived
*)
bp
)->
extra
=
'x'
;
21
return
0
;
22
}