OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
86076c241e0d606c3f362e998e54af5d2846b514
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr14092-1.c
1
/* PR c/14092
2
* Origin: bonzini@gnu.org
3
* rejects-valid
4
*/
5
/* { dg-do compile } */
6
7
typedef struct _PLCI {
8
unsigned char x;
9
unsigned char buf[1];
10
} PLCI;
11
12
13
void nl_ind(PLCI * plci)
14
{
15
plci->x = -((int)(plci->buf)) & 3;
16
}
17