blob: af91ae7eb5cc557d4f7707c4ffca388b069e65fb [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm < %s | grep 'extern_weak' | count 1
Eli Friedman895771a2009-05-26 01:22:57 +00002
3struct S;
4void __attribute__((weak)) foo1(struct S);
5void (*foo2)(struct S) = foo1;