llvm-gcc4 crashes on this bitfield reference #1278
Labels
bugzilla
Issues migrated from bugzilla
code-quality
compile-fail
Use [accepts-invalid] and [rejects-valid] instead
llvm-tools
All llvm tools that do not have corresponding tag
Extended Description
struct state_struct {
unsigned long long phys_frame: 50;
unsigned valid : 2;
} s;
int mem_access(struct state_struct *p) {
return p->valid;
}
The text was updated successfully, but these errors were encountered: