Skip to content

Commit d1397bd

Browse files
committed
PR: Fix small style fallout
1 parent 728ef08 commit d1397bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/lib/Driver/ToolChains/CommonArgs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ collectSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
13821382
StaticRuntimes.push_back("asan_cxx");
13831383
}
13841384

1385-
if (!SanArgs.needsSharedRt() && SanArgs.needsRadsanRt())
1385+
if (!SanArgs.needsSharedRt() && SanArgs.needsRadsanRt())
13861386
StaticRuntimes.push_back("radsan");
13871387

13881388
if (!SanArgs.needsSharedRt() && SanArgs.needsMemProfRt()) {

compiler-rt/lib/radsan/radsan_interceptors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ INTERCEPTOR(int, puts, const char *s) {
125125
return REAL(puts)(s);
126126
}
127127

128-
// Concurrency
128+
// Concurrency
129129
#if SANITIZER_APPLE
130130
#pragma clang diagnostic push
131131
// OSSpinLockLock is deprecated, but still in use in libc++

0 commit comments

Comments
 (0)