Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm < %s
      2 
      3 // PR2414
      4 struct mad_frame{};
      5 enum mad_flow {ont};
      6 
      7 typedef enum mad_flow filter_func_t(void *, struct mad_frame *);
      8 
      9 filter_func_t mono_filter;
     10 
     11 void addfilter2(filter_func_t *func){}
     12 
     13 void setup_filters()
     14 {
     15   addfilter2( mono_filter);
     16 }
     17