repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
malloc-ipa-12.c
blob
3813c9ae45ea8f44dbbe79b9fdebd46dbf470768
1
#include <stdlib.h>
2
3
void
recursive_free
(
void
*
ptr
)
4
{
5
free
(
ptr
);
/* { dg-warning "double-'free' of 'ptr'" } */
6
recursive_free
(
ptr
);
/* { dg-warning "infinite recursion" } */
7
}