diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 22:49:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 22:49:13 +0000 |
commit | 390d78b3d05a69182ba79d666ff2ffa82f5dbb57 (patch) | |
tree | 1b260c7797b76bcc104e0af5986abaeef98a84d3 | |
parent | c521f54198dd90f6f97ada02ae8915af51181c5d (diff) | |
download | bcm5719-llvm-390d78b3d05a69182ba79d666ff2ffa82f5dbb57.tar.gz bcm5719-llvm-390d78b3d05a69182ba79d666ff2ffa82f5dbb57.zip |
remove use of alloca.h
llvm-svn: 79870
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 9fbee9cb795..19d7ce375ec 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -19,9 +19,9 @@ #include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/ModuleProvider.h" -#include "llvm/ADT/Statistic.h" -#include "llvm/Config/alloca.h" #include "llvm/ExecutionEngine/GenericValue.h" +#include "llvm/ADT/Statistic.h" +#include "llvm/ADT/SmallVector.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MutexGuard.h" @@ -859,9 +859,11 @@ void ExecutionEngine::LoadValueFromMemory(GenericValue &Result, // Host and target are different endian - reverse copy the stored // bytes into a buffer, and load from that. uint8_t *Src = (uint8_t*)Ptr; - uint8_t *Buf = (uint8_t*)alloca(LoadBytes); - std::reverse_copy(Src, Src + LoadBytes, Buf); - Ptr = (GenericValue*)Buf; + + SmallVector<uint8_t, 20> Buf; + Buf.resize(LoadBytes+1); + std::reverse_copy(Src, Src + LoadBytes, Buf.data()); + Ptr = (GenericValue*)Buf.data(); } switch (Ty->getTypeID()) { |