include alloca.h instead of malloc.h. If this doesn't work for everyone we can just declare alloca directly in the file.

llvm-svn: 58853
This commit is contained in:
Anders Carlsson 2008-11-07 15:41:33 +00:00
parent 3707f1e6f3
commit aaa183e944
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
// RUN: clang -checker-simple -verify %s
#include <stdlib.h>
#include <malloc.h>
#include <alloca.h>
int* f1() {
int x = 0;