Skip to content

Commit f5ef483

Browse files
committed
format
1 parent 7cef5a2 commit f5ef483

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Transforms/Instrumentation/TypeSanitizer.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,8 @@ void collectMemAccessInfo(
510510
}
511511
}
512512

513-
bool TypeSanitizer::sanitizeFunction(Function &F, const TargetLibraryInfo &TLI) {
513+
bool TypeSanitizer::sanitizeFunction(Function &F,
514+
const TargetLibraryInfo &TLI) {
514515
// This is required to prevent instrumenting call to __tysan_init from within
515516
// the module constructor.
516517
if (&F == TysanCtorFunction.getCallee() || &F == TysanGlobalsSetTypeFunction)
@@ -877,7 +878,7 @@ bool TypeSanitizer::instrumentMemInst(Value *V, Instruction *ShadowBase,
877878
}
878879

879880
PreservedAnalyses TypeSanitizerPass::run(Module &M,
880-
ModuleAnalysisManager &MAM) {
881+
ModuleAnalysisManager &MAM) {
881882
Function *TysanCtorFunction;
882883
std::tie(TysanCtorFunction, std::ignore) =
883884
createSanitizerCtorAndInitFunctions(M, kTysanModuleCtorName,

0 commit comments

Comments
 (0)