mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 11:46:07 +00:00

We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
120 lines
3.0 KiB
C
120 lines
3.0 KiB
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
struct X {
|
|
union {
|
|
float f3;
|
|
double d2;
|
|
} named;
|
|
|
|
union {
|
|
int i;
|
|
float f;
|
|
|
|
union {
|
|
float f2;
|
|
double d;
|
|
};
|
|
};
|
|
|
|
struct {
|
|
int a;
|
|
float b;
|
|
};
|
|
};
|
|
|
|
void test_unqual_references(struct X x, const struct X xc) {
|
|
// expected-note@-1 3{{variable 'xc' declared const here}}
|
|
x.i = 0;
|
|
x.f = 0.0;
|
|
x.f2 = x.f;
|
|
x.d = x.f;
|
|
x.f3 = 0; // expected-error{{no member named 'f3'}}
|
|
x.a = 0;
|
|
|
|
xc.d = 0.0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}}
|
|
xc.f = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}}
|
|
xc.a = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}}
|
|
}
|
|
|
|
|
|
struct Redecl {
|
|
int x; // expected-note{{previous declaration is here}}
|
|
struct y { }; // expected-warning{{declaration does not declare anything}}
|
|
|
|
union {
|
|
int x; // expected-error{{member of anonymous union redeclares 'x'}}
|
|
float y;
|
|
double z; // expected-note{{previous declaration is here}}
|
|
double zz; // expected-note{{previous declaration is here}}
|
|
};
|
|
|
|
int z; // expected-error{{duplicate member 'z'}}
|
|
void zz(void); // expected-error{{duplicate member 'zz'}}
|
|
};
|
|
|
|
union { // expected-warning{{declaration does not declare anything}}
|
|
int int_val;
|
|
float float_val;
|
|
};
|
|
|
|
static union { // expected-warning{{declaration does not declare anything}}
|
|
int int_val2;
|
|
float float_val2;
|
|
};
|
|
|
|
void f(void) {
|
|
int_val2 = 0; // expected-error{{use of undeclared identifier}}
|
|
float_val2 = 0.0; // expected-error{{use of undeclared identifier}}
|
|
}
|
|
|
|
void g(void) {
|
|
union { // expected-warning{{declaration does not declare anything}}
|
|
int i;
|
|
float f2;
|
|
};
|
|
i = 0; // expected-error{{use of undeclared identifier}}
|
|
f2 = 0.0; // expected-error{{use of undeclared identifier}}
|
|
}
|
|
|
|
struct s0 { union { int f0; }; };
|
|
|
|
typedef struct { }; // expected-warning{{typedef requires a name}}
|
|
|
|
// PR3675
|
|
struct s1 {
|
|
int f0; // expected-note{{previous declaration is here}}
|
|
union {
|
|
int f0; // expected-error{{member of anonymous union redeclares 'f0'}}
|
|
};
|
|
};
|
|
|
|
// PR3680
|
|
struct {}; // expected-warning{{declaration does not declare anything}}
|
|
|
|
struct s2 {
|
|
union {
|
|
int a;
|
|
} // expected-warning{{expected ';' at end of declaration list}}
|
|
}; // expected-error{{expected member name or ';' after declaration specifiers}}
|
|
|
|
// Make sure we don't a.k.a. anonymous structs.
|
|
typedef struct {
|
|
int x;
|
|
} a_struct;
|
|
int tmp = (a_struct) { .x = 0 }; // expected-error {{initializing 'int' with an expression of incompatible type 'a_struct'}}
|
|
|
|
// This example comes out of the C11 standard; make sure we don't accidentally reject it.
|
|
struct s {
|
|
struct { int i; };
|
|
int a[];
|
|
};
|
|
|
|
// PR20930
|
|
struct s3 {
|
|
struct { int A __attribute__((deprecated)); }; // expected-note {{'A' has been explicitly marked deprecated here}}
|
|
};
|
|
|
|
void deprecated_anonymous_struct_member(void) {
|
|
struct s3 s;
|
|
s.A = 1; // expected-warning {{'A' is deprecated}}
|
|
}
|