New testcase for PR80

llvm-svn: 9699
This commit is contained in:
Chris Lattner 2003-11-04 18:52:01 +00:00
parent ba4b1c47c1
commit 12d304d4d8
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
typedef struct { } rwlock_t;
struct fs_struct { rwlock_t lock; int umask; };
void __copy_fs_struct(struct fs_struct *fs) { fs->lock = (rwlock_t) { }; }