blob: d9fa5423d9ef37acdb31d1d8f717756a753088a9 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// RUN: %clang_cc1 %s -verify -fsyntax-only
int a __attribute__((naked)); // expected-warning {{'naked' attribute only applies to functions}}
__attribute__((naked)) int t0(void) {
__asm__ volatile("mov r0, #0");
}
void t1() __attribute__((naked));
void t2() __attribute__((naked(2))); // expected-error {{attribute takes no arguments}}
|