[llvm] r324813 - Fix Wdocumentation warnings. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 10 07:02:07 PST 2018
Author: rksimon
Date: Sat Feb 10 07:02:07 2018
New Revision: 324813
URL: http://llvm.org/viewvc/llvm-project?rev=324813&view=rev
Log:
Fix Wdocumentation warnings. NFCI.
Modified:
llvm/trunk/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
llvm/trunk/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h?rev=324813&r1=324812&r2=324813&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h Sat Feb 10 07:02:07 2018
@@ -78,7 +78,7 @@ public:
/// @brief Immediately emit and finalize the module represented by the given
/// handle.
- /// @param H Handle for module to emit/finalize.
+ /// @param K The VModuleKey for the module to emit/finalize.
Error emitAndFinalize(VModuleKey K) { return BaseLayer.emitAndFinalize(K); }
private:
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h?rev=324813&r1=324812&r2=324813&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h Sat Feb 10 07:02:07 2018
@@ -58,7 +58,7 @@ public:
/// @brief Get the address of the given symbol in the context of the module
/// represented by the VModuleKey K. This call is forwarded to the base
/// layer's implementation.
- /// @param H The handle for the module to search in.
+ /// @param K The VModuleKey for the module to search in.
/// @param Name The name of the symbol to search for.
/// @param ExportedSymbolsOnly If true, search only for exported symbols.
/// @return A handle for the given named symbol, if it is found in the
@@ -70,7 +70,7 @@ public:
/// @brief Immediately emit and finalize the module represented by the given
/// VModuleKey.
- /// @param H Handle for module to emit/finalize.
+ /// @param K The VModuleKey for the module to emit/finalize.
Error emitAndFinalize(VModuleKey K) { return BaseLayer.emitAndFinalize(K); }
/// @brief Access the transform functor directly.
More information about the llvm-commits
mailing list