OSDN Git Service

Fix -Wdocumentation warning.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 4 Jul 2019 10:33:21 +0000 (10:33 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 4 Jul 2019 10:33:21 +0000 (10:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365127 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DebugInfo/GSYM/InlineInfo.h

index d283409..2224306 100644 (file)
@@ -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;
 };