brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · 4712a01 Raw
10 lines · c
1// RUN: %clang_cc1 -emit-llvm -O1 -o - %s | grep icmp2// PR16783extern void B (void);4static __typeof(B) A __attribute__ ((__weakref__("B")));5int active (void)6{7  static void *const p = __extension__ (void *) &A;8  return p != 0;9}10