diff options
author | Chris Lattner <sabre@nondot.org> | 2003-01-13 00:58:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-01-13 00:58:06 +0000 |
commit | 92798d78498c72e9cf4f2ee7803c844888fa085b (patch) | |
tree | 02eaf3d5d24a7472fd698d945ec5169dcfea3f1f | |
parent | 8e4a9144ecd0bff747cd69fe7eac2340f2c156b2 (diff) | |
download | external_llvm-92798d78498c72e9cf4f2ee7803c844888fa085b.zip external_llvm-92798d78498c72e9cf4f2ee7803c844888fa085b.tar.gz external_llvm-92798d78498c72e9cf4f2ee7803c844888fa085b.tar.bz2 |
Add fixme
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5251 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index e6c8581..96ca54a 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -170,7 +170,8 @@ void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) { void *ExecutionEngine::CreateArgv(const std::vector<std::string> &InputArgv) { // Pointers are 64 bits... - PointerTy *Result = new PointerTy[InputArgv.size()+1]; // 64 bit assumption + // FIXME: Assumes 64 bit target + PointerTy *Result = new PointerTy[InputArgv.size()+1]; DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n"); for (unsigned i = 0; i < InputArgv.size(); ++i) { |