[llvm-commits] [llvm] r162677 - /llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h

Danil Malyshev dmalyshev at accesssoftek.com
Mon Aug 27 08:34:01 PDT 2012


Author: danil
Date: Mon Aug 27 10:34:01 2012
New Revision: 162677

URL: http://llvm.org/viewvc/llvm-project?rev=162677&view=rev
Log:
Fix comment for function RuntimeDyldImpl.resolveRelocation()

Modified:
    llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h

Modified: llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h?rev=162677&r1=162676&r2=162677&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h (original)
+++ llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h Mon Aug 27 10:34:01 2012
@@ -223,7 +223,10 @@
   void resolveRelocationEntry(const RelocationEntry &RE, uint64_t Value);
 
   /// \brief A object file specific relocation resolver
-  /// \param Address Address to apply the relocation action
+  /// \param LocalAddress The address to apply the relocation action
+  /// \param FinalAddress If the linker prepare code for remote executon then
+  ///                     FinalAddress has the remote address to apply the
+  ///                     relocation action, otherwise is same as LocalAddress
   /// \param Value Target symbol address to apply the relocation action
   /// \param Type object file specific relocation type
   /// \param Addend A constant addend used to compute the value to be stored





More information about the llvm-commits mailing list