xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2008-09-03-WeakAlias.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm -O1 -o - %s | grep icmp
2 // PR1678
3 extern void B (void);
4 static __typeof(B) A __attribute__ ((__weakref__("B")));
active(void)5 int active (void)
6 {
7   static void *const p = __extension__ (void *) &A;
8   return p != 0;
9 }
10