================ @@ -53,8 +53,7 @@ InstrumentationRuntimeStopInfo::GetSuggestedStackFrameIndex( // case we somehow ended up looking at an infinite recursion. constexpr size_t max_stack_depth = 128; - // Start at parent frame. - size_t stack_idx = 1; + size_t stack_idx = 0; ---------------- Michael137 wrote:
This function tries to find a frame that's not stopped in the sanitizer runtime. What kind of frame do we stop in on Linux? I was under the impression we set a breakpoint on the various sanitizer report symbols. So it should stop in the sanitizer library. https://github.com/llvm/llvm-project/pull/177964 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
