Make the TSan report capture data structure anonymous.
authorJim Ingham <jingham@apple.com>
Fri, 28 Apr 2023 00:36:31 +0000 (17:36 -0700)
committerJim Ingham <jingham@apple.com>
Fri, 28 Apr 2023 00:36:31 +0000 (17:36 -0700)
commit47f72aede163348ee474be4a3004dc0a9195fa9c
tree8ff11ff6947ffe1bb41c7405646b0ae67e2dcd9e
parent8bacd751259a459aa62995365ce22a1cfa1e373c
Make the TSan report capture data structure anonymous.

This was using `struct data` which is way to common a name to use in
an lldb expression, and was causing occasional failures in the
TSan report gatherer.  The structure doesn't need to have a tag,
so remove it to avoid future problems.

The same job was done for the other sanitizers in D145569, but this
one was overlooked.

Differential Revision: https://reviews.llvm.org/D149394
lldb/source/Plugins/InstrumentationRuntime/TSan/InstrumentationRuntimeTSan.cpp