================ @@ -53,7 +53,10 @@ def fuzz_obj(obj): obj.GetByteOrder() obj.GetTriple() error = lldb.SBError() - obj.WatchAddress(123, 8, True, True, error) + wp_opts = lldb.SBWatchpointOptions() + wp_opts.SetWatchpointTypeRead(True) + wp_opts.SetWatchpointTypeModify(True) + obj.WatchpointCreateByAddress(123, 8, wp_opts, error) ---------------- clayborg wrote:
Revert and keep old API usage? https://github.com/llvm/llvm-project/pull/66308 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits