[Lldb-commits] [lldb] [lldb] Fix the 'skipUnlessUndefinedBehaviorSanitizer' decorator. (PR #176463)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 16 17:48:10 PST 2026
ashgti wrote:
The issue is _compiler_supports is also using a `with` statement, so `__exit__` is called before the function returns. Using another `with` statement would still clean up the file unless we refcounted the number of `__enter__` and `__exit__` calls to only remove the file once they're balanced.
https://github.com/llvm/llvm-project/pull/176463
More information about the lldb-commits
mailing list