blob: e771b8830070d79e3110a23be47fc51d7021a857 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3typedef struct { } rwlock_t;
4struct fs_struct { rwlock_t lock; int umask; };
5void __copy_fs_struct(struct fs_struct *fs) { fs->lock = (rwlock_t) { }; }
6