2010-09-30 02:20:25 +08:00
|
|
|
// RUN: %clang_cc1 %s -verify -fsyntax-only
|
|
|
|
|
2011-01-25 11:51:08 +08:00
|
|
|
int a __attribute__((naked)); // expected-warning {{'naked' attribute only applies to functions}}
|
2010-09-30 02:20:25 +08:00
|
|
|
|
|
|
|
void t1() __attribute__((naked));
|
|
|
|
|
2011-03-02 20:15:05 +08:00
|
|
|
void t2() __attribute__((naked(2))); // expected-error {{attribute takes no arguments}}
|
2010-09-30 02:20:25 +08:00
|
|
|
|