blob: 2dfc72a354da34b5f39d369b627a44931e1112ad [file] [log] [blame]
Dylan McKaye8232d72017-02-08 05:09:26 +00001// RUN: %clang_cc1 %s -triple avr-unknown-unknown -verify -fsyntax-only
2struct a { int b; };
3
4struct a test __attribute__((interrupt)); // expected-warning {{'interrupt' attribute only applies to functions}}
5
6__attribute__((interrupt(12))) void foo(void) { } // expected-error {{'interrupt' attribute takes no arguments}}
7
8__attribute__((interrupt)) void food() {}