diff --git a/include/Config/alloca.h b/include/Config/alloca.h index a6d6dbf9bdf..297b56fa7c5 100644 --- a/include/Config/alloca.h +++ b/include/Config/alloca.h @@ -23,27 +23,23 @@ * 2) If alloca.h cannot be found, then try stdlib.h. Some platforms * (notably FreeBSD) defined alloca() there. */ -#ifndef __GNUC__ -# ifdef HAVE_ALLOCA_H -# include +#ifdef _MSC_VER +/* noop on Visual C++ */ +#elif defined(HAVE_ALLOCA_H) +#include +#elif !defined(__GNUC__) +# ifdef _AIX + # pragma alloca # else -# ifdef _AIX - # pragma alloca -# else -# ifndef alloca - char * alloca (); -# endif +# ifndef alloca + char * alloca (); # endif # endif #else -# ifdef HAVE_ALLOCA_H -# include +# ifdef HAVE_STDLIB_H +# include # else -# ifdef HAVE_STDLIB_H -# include -# else -# error "The function alloca() is required but not found!" -# endif +# error "The function alloca() is required but not found!" # endif #endif diff --git a/include/llvm/Config/alloca.h b/include/llvm/Config/alloca.h index a6d6dbf9bdf..297b56fa7c5 100644 --- a/include/llvm/Config/alloca.h +++ b/include/llvm/Config/alloca.h @@ -23,27 +23,23 @@ * 2) If alloca.h cannot be found, then try stdlib.h. Some platforms * (notably FreeBSD) defined alloca() there. */ -#ifndef __GNUC__ -# ifdef HAVE_ALLOCA_H -# include +#ifdef _MSC_VER +/* noop on Visual C++ */ +#elif defined(HAVE_ALLOCA_H) +#include +#elif !defined(__GNUC__) +# ifdef _AIX + # pragma alloca # else -# ifdef _AIX - # pragma alloca -# else -# ifndef alloca - char * alloca (); -# endif +# ifndef alloca + char * alloca (); # endif # endif #else -# ifdef HAVE_ALLOCA_H -# include +# ifdef HAVE_STDLIB_H +# include # else -# ifdef HAVE_STDLIB_H -# include -# else -# error "The function alloca() is required but not found!" -# endif +# error "The function alloca() is required but not found!" # endif #endif