From: Anders Carlsson Date: Fri, 7 Nov 2008 15:41:33 +0000 (+0000) Subject: include alloca.h instead of malloc.h. If this doesn't work for everyone we can just... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31483b48c75e2bd544964102f67809b46603c683;p=clang include alloca.h instead of malloc.h. If this doesn't work for everyone we can just declare alloca directly in the file. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/stack-addr-ps.c b/test/Analysis/stack-addr-ps.c index c604753c6e..58687f36c7 100644 --- a/test/Analysis/stack-addr-ps.c +++ b/test/Analysis/stack-addr-ps.c @@ -1,7 +1,7 @@ // RUN: clang -checker-simple -verify %s #include -#include +#include int* f1() { int x = 0;