[Lldb-commits] [PATCH] D57475: [Reproducers] Add SBReproducer macros

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 31 10:15:42 PST 2019


labath added a comment.

BTW, it would be nice to mention somewhere how to use this tool. Do you just run it, or does it needs some special arguments, or something?



================
Comment at: source/API/SBBlock.cpp:52-58
+  SB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBlock, IsValid);
+  return m_opaque_ptr != NULL;
+}
 
 bool SBBlock::IsInlined() const {
+  SB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBlock, IsInlined);
+
----------------
It looks like some functions have a newline after the macro, and some don't. What's the reason for that?


Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57475/new/

https://reviews.llvm.org/D57475





More information about the lldb-commits mailing list