Update analyzer build.
[clang.git] / test / CodeGen / linkage-redecl.c
blob09b51f02c13f229a6229666d5c55ce10266c4b5c
1 // RUN: %clang_cc1 -emit-llvm %s -o - |grep internal
3 // C99 6.2.2p3
4 // PR3425
5 static void f(int x);
7 void g0() {
8 f(5);
11 extern void f(int x) { } // still has internal linkage