Skip to content

Commit 5286206

Browse files
committed
fmt
Created using spr 1.3.4
1 parent b8a0b70 commit 5286206

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ struct SizeClassAllocator32LocalCache {
169169
// By not doing pointer arithmetic, we avoid the OOB if c->count = 0.
170170
// We just prefetch the previous member of the PerClass struct, which
171171
// doesn't do harm.
172-
PREFETCH(reinterpret_cast<uptr>(c->batch) + sizeof(c->batch[0])* (c->count - 1));
172+
PREFETCH(reinterpret_cast<uptr>(c->batch) +
173+
sizeof(c->batch[0]) * (c->count - 1));
173174
stats_.Add(AllocatorStatAllocated, c->class_size);
174175
return res;
175176
}

0 commit comments

Comments
 (0)