1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/CFrontend/2003-11-04-EmptyStruct.c
Chris Lattner 1fda2717e7 new testcase
llvm-svn: 9817
2003-11-09 00:23:05 +00:00

5 lines
153 B
C

typedef struct { } rwlock_t;
struct fs_struct { rwlock_t lock; int umask; };
void __copy_fs_struct(struct fs_struct *fs) { fs->lock = (rwlock_t) { }; }