diff options
| author | Eli Bendersky <eli.bendersky@intel.com> | 2012-04-29 12:40:47 +0000 |
|---|---|---|
| committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-04-29 12:40:47 +0000 |
| commit | 0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef (patch) | |
| tree | 207f2c72b9df9b6c336bf005499bb887ddb1adf6 /llvm/include | |
| parent | 968b63c72d20ec24e92cf57979c1dbb28fceb66c (diff) | |
| download | bcm5719-llvm-0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef.tar.gz bcm5719-llvm-0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef.zip | |
Fix some formatting, grammar and style issues and add a couple of missing comments.
llvm-svn: 155793
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/RuntimeDyld.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h b/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h index 54c28f3ec14..a5c9272d3ca 100644 --- a/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h +++ b/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h @@ -65,12 +65,15 @@ public: RuntimeDyld(RTDyldMemoryManager*); ~RuntimeDyld(); + /// Load an in-memory object file into the dynamic linker. bool loadObject(MemoryBuffer *InputBuffer); - // Get the address of our local copy of the symbol. This may or may not - // be the address used for relocation (clients can copy the data around - // and resolve relocatons based on where they put it). + + /// Get the address of our local copy of the symbol. This may or may not + /// be the address used for relocation (clients can copy the data around + /// and resolve relocatons based on where they put it). void *getSymbolAddress(StringRef Name); - // Resolve the relocations for all symbols we currently know about. + + /// Resolve the relocations for all symbols we currently know about. void resolveRelocations(); /// mapSectionAddress - map a section to its target address space value. |

