Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2009-06-14-anonymous-union-init.c
blob8ccd7bc4ec3384006c63f37d14c7992231829292
1 // RUN: %clang_cc1 -emit-llvm < %s | grep "zeroinitializer, i16 16877"
2 // PR4390
3 struct sysfs_dirent {
4 union { struct sysfs_elem_dir {} s_dir; };
5 unsigned short s_mode;
6 };
7 struct sysfs_dirent sysfs_root = { {}, 16877 };