Files
swift-mirror/test/SILOptimizer/Inputs/bitfield.h
Erik Eckstein c5c2688633 InitializeStaticGlobals: don't merge stores for structs with unreferencable storage
like C bitfields.

Fixes a compiler crash
rdar://122360051
2024-03-08 11:14:48 +01:00

6 lines
41 B
C

struct S {
int a;
int b : 8;
};