Fix Wdocumentation warnings. NFCI.

llvm-svn: 324813
This commit is contained in:
Simon Pilgrim 2018-02-10 15:02:07 +00:00
parent 17b00ec4f5
commit dd94785848
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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.