blob: e2f52987d1dbbf606c840a597fd0d073a2befbc7 [file] [log] [blame]
Nuno Lopes587de5b2012-05-24 00:22:00 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void* my_malloc(unsigned char) __attribute__((alloc_size(1)));
4void* my_calloc(unsigned char, short) __attribute__((alloc_size(1,2)));
5void* my_realloc(void*, unsigned) __attribute__((alloc_size(2)));
6
7
8void* fn1(int) __attribute__((alloc_size("xpto"))); // expected-error{{attribute requires integer constant}}
9
10void* fn2(void*) __attribute__((alloc_size(1))); // expected-error{{attribute requires integer constant}}
11
12void* fn3(unsigned) __attribute__((alloc_size(0))); // expected-error{{attribute parameter 1 is out of bounds}}
13void* fn4(unsigned) __attribute__((alloc_size(2))); // expected-error{{attribute parameter 1 is out of bounds}}
14
15void fn5(unsigned) __attribute__((alloc_size(1))); // expected-warning{{only applies to functions that return a pointer}}
16char fn6(unsigned) __attribute__((alloc_size(1))); // expected-warning{{only applies to functions that return a pointer}}
17
18void* fn7(unsigned) __attribute__((alloc_size)); // expected-error {{attribute takes at least 1 argument}}
19
Nuno Lopes96c67d12012-06-18 16:27:56 +000020void *fn8(int, int) __attribute__((alloc_size(1, 1))); // OK
Nuno Lopes587de5b2012-05-24 00:22:00 +000021
22void* fn9(unsigned) __attribute__((alloc_size(12345678901234567890123))); // expected-warning {{integer constant is too large for its type}} // expected-error {{attribute parameter 1 is out of bounds}}
Nuno Lopes174930d2012-06-18 16:39:04 +000023
24void* fn10(size_t, size_t) __attribute__((alloc_size(1,2))); // expected-error{{redefinition of parameter}} \
25 // expected-error{{a parameter list without types is only allowed in a function definition}} \
26 // expected-warning{{alloc_size attribute only applies to functions and methods}}