alloca fix to allow Clang with Microsoft CodeGen path

This commit is contained in:
omar 2017-12-11 10:25:44 +01:00
parent e67f3809ed
commit 6d93011fdf
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@
#if !defined(alloca)
#ifdef _WIN32
#include <malloc.h> // alloca
#if !defined(alloca)
#define alloca _alloca // for clang with MS Codegen
#endif
#elif defined(__GLIBC__) || defined(__sun)
#include <alloca.h> // alloca
#else