[PATCH] D67506: GSYM: add encoding and decoding to FunctionInfo

Greg Clayton via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 17 13:44:10 PDT 2019


clayborg added a comment.

So it seems that "constexpr" not needing to be captured is not consistent across all builds. The attempt to fix with 372144 then caused some buildbots that have warnings as errors to fail since they would warn that you shouldn't capture a constexpr and that became an error. Windows buildbots require the capture to be there or they fail.

  r372144 | rksimon | 2019-09-17 10:24:55 -0700 (Tue, 17 Sep 2019) | 1 line
  
  Fix MSVC lambda capture warnings. NFCI.

Solution? Avoid lambdas to keep buildbots happy with:

  $ svn commit
  Sending        unittests/DebugInfo/GSYM/GSYMTest.cpp
  Transmitting file data .done
  Committing transaction...
  Committed revision 372179.


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

https://reviews.llvm.org/D67506





More information about the llvm-commits mailing list