diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-13 07:04:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-13 07:04:56 +0000 |
commit | ea0cb7cce6b472575e16c216ae593eb449849fce (patch) | |
tree | 3ded57d93d9a6134cf127fe87066a6af4ca63aab | |
parent | a989c7e045dcad58bb58b9fb0cb75ee901f7879e (diff) | |
download | external_llvm-ea0cb7cce6b472575e16c216ae593eb449849fce.zip external_llvm-ea0cb7cce6b472575e16c216ae593eb449849fce.tar.gz external_llvm-ea0cb7cce6b472575e16c216ae593eb449849fce.tar.bz2 |
Fix some serious logic errors that broke the jit on darwin/x86-64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49606 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/JIT/JITEmitter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index 2277897..64d3cd7 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -370,17 +370,17 @@ static void AddFunctionToSymbolTable(const char *FnName, // If we have space in the table, reallocate the table. if (SymTabPtr->NumSymbols >= SymTabPtr->NumAllocated) { // If we don't have space, reallocate the table. - unsigned NewSize = std::min(64U, SymTabPtr->NumAllocated*2); + unsigned NewSize = std::max(64U, SymTabPtr->NumAllocated*2); JitSymbolEntry *NewSymbols = new JitSymbolEntry[NewSize]; JitSymbolEntry *OldSymbols = SymTabPtr->Symbols; // Copy the old entries over. memcpy(NewSymbols, OldSymbols, - SymTabPtr->NumAllocated*sizeof(JitSymbolEntry)); + SymTabPtr->NumSymbols*sizeof(OldSymbols[0])); // Swap the new symbols in, delete the old ones. SymTabPtr->Symbols = NewSymbols; - SymTabPtr->NumSymbols = NewSize; + SymTabPtr->NumAllocated = NewSize; delete [] OldSymbols; } |