Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s -o - |grep internal
      2 
      3 // C99 6.2.2p3
      4 // PR3425
      5 static void f(int x);
      6 
      7 void g0() {
      8   f(5);
      9 }
     10 
     11 extern void f(int x) { } // still has internal linkage
     12