blob: 09b51f02c13f229a6229666d5c55ce10266c4b5c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm %s -o - |grep internal
Douglas Gregor04495c82009-02-24 01:23:02 +00002
3// C99 6.2.2p3
4// PR3425
5static void f(int x);
6
7void g0() {
8 f(5);
9}
10
11extern void f(int x) { } // still has internal linkage