1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Emit correct prototype for __builtin_alloca on V8.

llvm-svn: 18745
This commit is contained in:
Brian Gaeke 2004-12-10 05:44:45 +00:00
parent 9b02192468
commit 1da3720799

View File

@ -715,9 +715,16 @@ void CWriter::writeOperand(Value *Operand) {
static void generateCompilerSpecificCode(std::ostream& Out) {
// Alloca is hard to get, and we don't want to include stdlib.h here...
Out << "/* get a declaration for alloca */\n"
<< "#if defined(sun) || defined(__CYGWIN__) || defined(__APPLE__)\n"
<< "#if defined(__CYGWIN__) || defined(__APPLE__)\n"
<< "extern void *__builtin_alloca(unsigned long);\n"
<< "#define alloca(x) __builtin_alloca(x)\n"
<< "#elif defined(__sun__)\n"
<< "#if defined(__sparcv9)\n"
<< "extern void *__builtin_alloca(unsigned long);\n"
<< "#else\n"
<< "extern void *__builtin_alloca(unsigned int);\n"
<< "#endif\n"
<< "#define alloca(x) __builtin_alloca(x)\n"
<< "#elif defined(__FreeBSD__)\n"
<< "#define alloca(x) __builtin_alloca(x)\n"
<< "#else\n"