|
|
| Bugzilla Link |
2103 |
| Resolution |
FIXED |
| Resolved on |
Mar 12, 2010 00:57 |
| Version |
unspecified |
| OS |
All |
| CC |
@efriedma-quic |
Extended Description
clang doesn't reject:
struct x {
int y : 4;
};
void foo(struct x *P) {
&P->y;
}
or:
void a() {
typedef float v4sf attribute ((vector_size (16)));
static v4sf q;
float* r = &q[0];
}