1  /* { dg-do compile } */
       2  
       3  void __attribute__ ((interrupt (5))) interrupt_5_handler ();
       4  
       5  void interrupt_5_handler ()
       6  {
       7  }
       8  
       9  void __attribute__ ((vector (4))) interrupt_4_handler ();
      10  
      11  void interrupt_4_handler ()
      12  {
      13  }
      14  
      15  void __attribute__ ((interrupt)) interrupt_handler ();
      16  
      17  void interrupt_handler ()
      18  {
      19  }
      20  
      21  /* { dg-final { scan-assembler "tableentry" } } */