[llvm] r365127 - Fix -Wdocumentation warning.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 4 03:33:21 PDT 2019


Author: rksimon
Date: Thu Jul  4 03:33:21 2019
New Revision: 365127

URL: http://llvm.org/viewvc/llvm-project?rev=365127&view=rev
Log:
Fix -Wdocumentation warning.

Modified:
    llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h

Modified: llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h?rev=365127&r1=365126&r2=365127&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h Thu Jul  4 03:33:21 2019
@@ -58,10 +58,9 @@ struct InlineInfo {
   /// non-inlined code.
   ///
   /// \param Addr the address to lookup
-  /// \param InlineStack a vector of InlineInfo objects that describe the
-  /// inline call stack for a given address.
   ///
-  /// \returns true if successful, false otherwise
+  /// \returns optional vector of InlineInfo objects that describe the
+  /// inline call stack for a given address, false otherwise.
   llvm::Optional<InlineArray> getInlineStack(uint64_t Addr) const;
 };
 




More information about the llvm-commits mailing list