tsan: qualify autos

clang-tidy warning requires qualifying auto pointers:

clang-tidy: warning: 'auto ctx' can be declared as 'auto *ctx' [llvm-qualified-auto]

Fix remaing cases we have in tsan.

Depends on D107561.

Reviewed By: melver

Differential Revision: https://reviews.llvm.org/D107562
This commit is contained in:
Dmitry Vyukov 2021-08-05 14:37:06 +02:00
parent cb7b0a5f34
commit c6a485caf6
2 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ ReportLocation *SymbolizeData(uptr addr) {
MBlock *b = ctx->metamap.GetBlock(cbctx.start);
if (!b)
return 0;
auto loc = New<ReportLocation>();
auto *loc = New<ReportLocation>();
loc->type = ReportLocationHeap;
loc->heap_chunk_start = cbctx.start;
loc->heap_chunk_size = b->siz;
@ -107,7 +107,7 @@ ReportLocation *SymbolizeData(uptr addr) {
loc->stack = SymbolizeStackId(b->stk);
return loc;
} else {
auto loc = New<ReportLocation>();
auto *loc = New<ReportLocation>();
loc->type = ReportLocationGlobal;
loc->global.name = internal_strdup(cbctx.name ? cbctx.name : "??");
loc->global.file = internal_strdup(cbctx.file ? cbctx.file : "??");
@ -140,7 +140,7 @@ Processor *ThreadState::proc() {
extern "C" {
static ThreadState *AllocGoroutine() {
auto thr = (ThreadState *)Alloc(sizeof(ThreadState));
auto *thr = (ThreadState *)Alloc(sizeof(ThreadState));
internal_memset(thr, 0, sizeof(*thr));
return thr;
}

View File

@ -562,7 +562,7 @@ NOINLINE
void GrowShadowStack(ThreadState *thr) {
const int sz = thr->shadow_stack_end - thr->shadow_stack;
const int newsz = 2 * sz;
auto newstack = (uptr *)Alloc(newsz * sizeof(uptr));
auto *newstack = (uptr *)Alloc(newsz * sizeof(uptr));
internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
Free(thr->shadow_stack);
thr->shadow_stack = newstack;