From 31483b48c75e2bd544964102f67809b46603c683 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Fri, 7 Nov 2008 15:41:33 +0000 Subject: [PATCH] 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 --- test/Analysis/stack-addr-ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1