Sign in
cobalt
/
cobalt
/
a7b1cfadc52288d71702934fd93743a24aea060a
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGen
/
2003-11-04-EmptyStruct.c
blob: e771b8830070d79e3110a23be47fc51d7021a857 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
typedef
struct
{
}
rwlock_t
;
struct
fs_struct
{
rwlock_t
lock
;
int
umask
;
};
void
__copy_fs_struct
(
struct
fs_struct
*
fs
)
{
fs
->
lock
=
(
rwlock_t
)
{
};
}