aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine/RuntimeDyld.h
diff options
context:
space:
mode:
authorEli Bendersky <eli.bendersky@intel.com>2012-04-29 12:40:47 +0000
committerEli Bendersky <eli.bendersky@intel.com>2012-04-29 12:40:47 +0000
commit5fe019835c269ccbfe185276269bc53b3f9a7a86 (patch)
treeee06e6256fe2ce34f2f0d9d580c0786c784179f5 /include/llvm/ExecutionEngine/RuntimeDyld.h
parent30183bf04273127dedd4342c49f7612214c57181 (diff)
downloadexternal_llvm-5fe019835c269ccbfe185276269bc53b3f9a7a86.zip
external_llvm-5fe019835c269ccbfe185276269bc53b3f9a7a86.tar.gz
external_llvm-5fe019835c269ccbfe185276269bc53b3f9a7a86.tar.bz2
Fix some formatting, grammar and style issues and add a couple of missing comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/RuntimeDyld.h')
-rw-r--r--include/llvm/ExecutionEngine/RuntimeDyld.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/llvm/ExecutionEngine/RuntimeDyld.h b/include/llvm/ExecutionEngine/RuntimeDyld.h
index 54c28f3..a5c9272 100644
--- a/include/llvm/ExecutionEngine/RuntimeDyld.h
+++ b/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.