diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-04-06 22:13:52 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-04-06 22:13:52 +0000 |
commit | 9c146792608c05a0569374ce3eb034589c82ae83 (patch) | |
tree | 7607add0d8cb7aba14a2a7c3e1ae8c11351c0074 /llvm/lib/ExecutionEngine | |
parent | 8ce2f436940daaecad399b46f1eea1f2d4dec624 (diff) | |
download | bcm5719-llvm-9c146792608c05a0569374ce3eb034589c82ae83.tar.gz bcm5719-llvm-9c146792608c05a0569374ce3eb034589c82ae83.zip |
tidy up.
llvm-svn: 129032
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index de54f082eb4..29fced4e6c6 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -104,7 +104,7 @@ public: }; 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); |