[PATCH] D32517: [ubsan] Request the fast unwinder when print_stacktrace=1
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 27 15:10:58 PDT 2017
eugenis added inline comments.
================
Comment at: lib/ubsan/ubsan_diag.cc:39
+ stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
+ /*request_fast_unwind=*/true);
stack.Print();
----------------
This would use fast unwinder on linux, even when the slow one is available.
I think we should prefer slow, as before.
https://reviews.llvm.org/D32517
More information about the llvm-commits
mailing list