Changeset View
Changeset View
Standalone View
Standalone View
test/CodeGenCXX/pod-member-memcpys.cpp
Show First 20 Lines • Show All 63 Lines • ▼ Show 20 Lines | |||||
struct BitfieldMember2 { | struct BitfieldMember2 { | ||||
unsigned a : 1; | unsigned a : 1; | ||||
unsigned b, c, d; | unsigned b, c, d; | ||||
NonPOD np; | NonPOD np; | ||||
}; | }; | ||||
struct BitfieldMember3 { | struct BitfieldMember3 { | ||||
virtual void f(); | virtual void f(); | ||||
int : 8; | int z : 8; | ||||
int x : 1; | int x : 1; | ||||
int y; | int y; | ||||
}; | }; | ||||
struct InnerClassMember { | struct InnerClassMember { | ||||
struct { | struct { | ||||
int a, b, c, d; | int a, b, c, d; | ||||
} a; | } a; | ||||
▲ Show 20 Lines • Show All 188 Lines • Show Last 20 Lines |