remove use of alloca.h
authorChris Lattner <sabre@nondot.org>
Sun, 23 Aug 2009 22:49:13 +0000 (22:49 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 23 Aug 2009 22:49:13 +0000 (22:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79870 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index 9fbee9cb79544e045dedb912d50315421a4f38b4..19d7ce375ec7826494d74bc6e66cccdb37bf8914 100644 (file)
@@ -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()) {