If we have multiple definitions of the same entity from different modules, we nominate the first definition which we see as being the canonical definition. If we load a declaration from a different definition and we can't find a corresponding declaration in the canonical definition, issue a diagnostic. This is insufficient to prevent things from going horribly wrong in all cases -- we might be in the middle of emitting IR for a function when we trigger some deserialization and discover that it refers to an incoherent piece of the AST, by which point it's probably too late to bail out -- but we'll at least produce a diagnostic. llvm-svn: 192950
10 lines
93 B
C
10 lines
93 B
C
struct Y {
|
|
int m;
|
|
double f;
|
|
} y2;
|
|
enum E { e2 };
|
|
|
|
int g() {
|
|
return y2.m + e2 + y2.f;
|
|
}
|