URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [zero-strct-4.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
typedef struct {} raw_spinlock_t; typedef struct { raw_spinlock_t raw_lock; } spinlock_t; struct sk_buff_head { int i; spinlock_t lock; }; struct sk_buff_head audit_skb_queue; void audit_init(void) { struct sk_buff_head *list = &audit_skb_queue; audit_skb_queue.lock = (spinlock_t) { .raw_lock = { } }; }
Go to most recent revision | Compare with Previous | Blame | View Log