commit | 01ccab401263e19ea791e43d00915a378c548df9 | [log] [tgz] |
---|---|---|
author | Jim Grosbach <grosbach@apple.com> | Wed Apr 06 22:13:52 2011 +0000 |
committer | Jim Grosbach <grosbach@apple.com> | Wed Apr 06 22:13:52 2011 +0000 |
tree | fee338dfbc9088eafc60d9cd21446227f9e9d5f6 | |
parent | 9a54352879e5aaac2e2c37490e5cb7844550db8b [diff] [blame] |
tidy up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129032 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index de54f08..29fced4 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
@@ -104,7 +104,7 @@ }; void RuntimeDyldImpl::extractFunction(StringRef Name, uint8_t *StartAddress, - uint8_t *EndAddress) { + uint8_t *EndAddress) { // Allocate memory for the function via the memory manager. uintptr_t Size = EndAddress - StartAddress + 1; uint8_t *Mem = MemMgr->startFunctionBody(Name.data(), Size);