brintos

brintos / llvm-project-archived public Read only

0
0
Text · 279 B · 0ceb968 Raw
17 lines · c
1// RUN: %clang_cc1 -emit-llvm < %s2 3// PR24144struct mad_frame{};5enum mad_flow {ont};6 7typedef enum mad_flow filter_func_t(void *, struct mad_frame *);8 9filter_func_t mono_filter;10 11void addfilter2(filter_func_t *func){}12 13void setup_filters(void)14{15  addfilter2( mono_filter);16}17