blob: 5b59bd50580d715fc7e99fff4ca20dc0f0440826 [file] [log] [blame]
Ryan Flynn31af0912009-08-09 20:07:29 +00001// RUN: clang-cc -verify -fsyntax-only %s &&
2// RUN: clang-cc -emit-llvm -o %t %s &&
3
4#include <stdlib.h>
5
6int no_vars __attribute((malloc)); // expected-warning {{only applies to function types}}
7
Ryan Flynn6a7fda02009-08-09 22:36:29 +00008void returns_void (void) __attribute((malloc)); // expected-warning {{functions returning pointer type}}
9int returns_int (void) __attribute((malloc)); // expected-warning {{functions returning pointer type}}
10int * returns_intptr(void) __attribute((malloc));
11typedef int * iptr;
12iptr returns_iptr (void) __attribute((malloc));
13
Ryan Flynn31af0912009-08-09 20:07:29 +000014__attribute((malloc))
15void * xalloc(unsigned n) { return malloc(n); }
16// RUN: grep 'define noalias .* @xalloc(' %t &&
17
18#define __malloc_like __attribute((__malloc__))
19void * xalloc2(unsigned) __malloc_like;
20void * xalloc2(unsigned n) { return malloc(n); }
21// RUN: grep 'define noalias .* @xalloc2(' %t
22