1  /* Test TI ABI unsupported constructs */
       2  
       3  /* { dg-do assemble } */
       4  /* { dg-options "-O1 -mabi=ti" } */
       5  
       6  
       7  extern void (*extfuncp)(int);
       8  
       9  void test(void)
      10  {
      11    extfuncp(1); /* { dg-error "function pointers not supported with '-mabi=ti' option" } */
      12  }