
(because they are part of some module) but have not been made visible (because they are in a submodule that wasn't imported), filter out those declarations unless both the old declaration and the new declaration have external linkage. When one or both has internal linkage, there should be no conflict unless both are imported. llvm-svn: 171925
12 lines
158 B
C
12 lines
158 B
C
extern int f0(int);
|
|
extern int f1(int);
|
|
static int f2(int);
|
|
static int f3(int);
|
|
|
|
extern int v0;
|
|
extern int v1;
|
|
static int v2;
|
|
static int v3;
|
|
|
|
typedef int T0;
|