mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 03:40:35 +00:00
Minor arm CBE fixes. Patch by Sandeep.
llvm-svn: 78181
This commit is contained in:
parent
f2b8211265
commit
0b9020497c
@ -1642,7 +1642,7 @@ static void generateCompilerSpecificCode(formatted_raw_ostream& Out,
|
||||
Out << "/* get a declaration for alloca */\n"
|
||||
<< "#if defined(__CYGWIN__) || defined(__MINGW32__)\n"
|
||||
<< "#define alloca(x) __builtin_alloca((x))\n"
|
||||
<< "#define _alloca(x) __builtin_alloca((x))\n"
|
||||
<< "#define _alloca(x) __builtin_alloca((x))\n"
|
||||
<< "#elif defined(__APPLE__)\n"
|
||||
<< "extern void *__builtin_alloca(unsigned long);\n"
|
||||
<< "#define alloca(x) __builtin_alloca(x)\n"
|
||||
@ -1655,7 +1655,7 @@ static void generateCompilerSpecificCode(formatted_raw_ostream& Out,
|
||||
<< "extern void *__builtin_alloca(unsigned int);\n"
|
||||
<< "#endif\n"
|
||||
<< "#define alloca(x) __builtin_alloca(x)\n"
|
||||
<< "#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)\n"
|
||||
<< "#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__arm__)\n"
|
||||
<< "#define alloca(x) __builtin_alloca(x)\n"
|
||||
<< "#elif defined(_MSC_VER)\n"
|
||||
<< "#define inline _inline\n"
|
||||
|
Loading…
Reference in New Issue
Block a user