2003-06-30 21:59:07 +00:00
|
|
|
/*
|
2003-10-20 20:11:43 +00:00
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2008-03-23 13:44:17 +00:00
|
|
|
* This file is distributed under the University of Illinois Open Source
|
|
|
|
* License. See LICENSE.TXT for details.
|
2005-04-21 20:39:54 +00:00
|
|
|
*
|
2003-10-20 20:11:43 +00:00
|
|
|
******************************************************************************
|
2003-06-30 21:59:07 +00:00
|
|
|
*
|
|
|
|
* Description:
|
2005-04-22 03:46:24 +00:00
|
|
|
* This header file includes the infamous alloc.h header file if the
|
|
|
|
* autoconf system has found it. It hides all of the autoconf details
|
|
|
|
* from the rest of the application source code.
|
2003-06-30 21:59:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_ALLOC_H
|
|
|
|
#define _CONFIG_ALLOC_H
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2003-06-30 21:59:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a modified version of that suggested by the Autoconf manual.
|
2005-04-22 03:46:24 +00:00
|
|
|
* 1) The #pragma is indented so that pre-ANSI C compilers ignore it.
|
|
|
|
* 2) If alloca.h cannot be found, then try stdlib.h. Some platforms
|
|
|
|
* (notably FreeBSD) defined alloca() there.
|
2003-06-30 21:59:07 +00:00
|
|
|
*/
|
2004-06-04 19:25:50 +00:00
|
|
|
#ifdef _MSC_VER
|
2004-10-25 18:38:05 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#define alloca _alloca
|
2004-06-04 19:25:50 +00:00
|
|
|
#elif defined(HAVE_ALLOCA_H)
|
|
|
|
#include <alloca.h>
|
2005-02-19 03:01:13 +00:00
|
|
|
#elif defined(__MINGW32__) && defined(HAVE_MALLOC_H)
|
2004-09-22 15:28:32 +00:00
|
|
|
#include <malloc.h>
|
2004-06-04 19:25:50 +00:00
|
|
|
#elif !defined(__GNUC__)
|
2005-04-22 03:46:24 +00:00
|
|
|
# ifdef _AIX
|
|
|
|
# pragma alloca
|
|
|
|
# else
|
|
|
|
# ifndef alloca
|
|
|
|
char * alloca ();
|
|
|
|
# endif
|
|
|
|
# endif
|
2003-06-30 21:59:07 +00:00
|
|
|
#else
|
2005-04-22 03:46:24 +00:00
|
|
|
# ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
# else
|
|
|
|
# error "The function alloca() is required but not found!"
|
|
|
|
# endif
|
2003-06-30 21:59:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|