[PATCH] D69546: [SanitizerCommon] Print the current value of options when printing out help.

Julian Lettner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 11 11:08:30 PST 2019


yln added inline comments.


================
Comment at: compiler-rt/lib/msan/msan.cpp:126
+  bool Format(char *buffer, uptr size) final {
+    const char *keep_going_str = (*halt_on_error) ? "false" : "true";
+    uptr keep_going_str_len = internal_strlcpy(buffer, keep_going_str, size);
----------------
Does this compile? `halt_on_error` seems to be missing `_`.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D69546





More information about the llvm-commits mailing list