[PATCH] D58861: [NFC][Sanitizer] Cleanup ASan's GetStackTrace implementation

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 4 22:00:10 PST 2019


vitalybuka accepted this revision.
vitalybuka added inline comments.


================
Comment at: lib/sanitizer_common/sanitizer_stacktrace.h:138
+  void UnwindSlowWithOptionalContext(uptr pc, void *context, u32 max_depth) {
+    if (context) UnwindSlow(pc, context, max_depth);
+    else         UnwindSlow(pc, max_depth);
----------------
Please use clang-format --style=file


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D58861





More information about the llvm-commits mailing list