Skip to content

Commit 7882b79

Browse files
committed
clang-format
1 parent f080021 commit 7882b79

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

compiler-rt/lib/asan/asan_errors.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,8 @@ static void PrintLegend(InternalScopedString *str) {
553553
PrintShadowByte(str, " Global redzone: ", kAsanGlobalRedzoneMagic);
554554
PrintShadowByte(str, " Global init order: ",
555555
kAsanInitializationOrderMagic);
556-
PrintShadowByte(str, " Poisoned by user: ",
557-
kAsanUserPoisonedMemoryMagic);
556+
PrintShadowByte(str,
557+
" Poisoned by user: ", kAsanUserPoisonedMemoryMagic);
558558
PrintShadowByte(str, " Container overflow: ",
559559
kAsanContiguousContainerOOBMagic);
560560
PrintShadowByte(str, " Array cookie: ",

compiler-rt/lib/asan/asan_poisoning.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ void InitializePoisonTracking() {
3636
PoisonRecords = PoisonRecordRingBuffer::New(flags()->track_poison);
3737
}
3838

39-
PoisonRecordRingBuffer* SANITIZER_ACQUIRE(PoisonRecordsMutex) AcquirePoisonRecords() {
39+
PoisonRecordRingBuffer *SANITIZER_ACQUIRE(PoisonRecordsMutex)
40+
AcquirePoisonRecords() {
4041
PoisonRecordsMutex.Lock();
4142

4243
return PoisonRecords;

0 commit comments

Comments
 (0)