blob: fae137ce2ef15b06c577d8d0655a803ba35cdfd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
struct S1 {
unsigned char f0;
short f1;
};
struct S1 g_77 = {0x73,9};
struct S1 * volatile g_85 = &g_77;
struct S1 g_204 = {0xAD,0x9086};
void func_1(void)
{
*g_85 = g_204;
}
|