mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Fix 80 cols caught by the linter...
We have a linter running in our build now? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221957 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4f3c9858e0
commit
677506434b
@ -1431,10 +1431,12 @@ void FunctionStackPoisoner::initializeCallbacks(Module &M) {
|
||||
kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
|
||||
IntptrTy, IntptrTy, nullptr));
|
||||
}
|
||||
AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
|
||||
kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
|
||||
AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
|
||||
kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
|
||||
AsanPoisonStackMemoryFunc = checkInterfaceFunction(
|
||||
M.getOrInsertFunction(kAsanPoisonStackMemoryName, IRB.getVoidTy(),
|
||||
IntptrTy, IntptrTy, nullptr));
|
||||
AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(
|
||||
M.getOrInsertFunction(kAsanUnpoisonStackMemoryName, IRB.getVoidTy(),
|
||||
IntptrTy, IntptrTy, nullptr));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -351,8 +351,9 @@ void MemorySanitizer::initializeCallbacks(Module &M) {
|
||||
MsanSetAllocaOrigin4Fn = M.getOrInsertFunction(
|
||||
"__msan_set_alloca_origin4", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy,
|
||||
IRB.getInt8PtrTy(), IntptrTy, nullptr);
|
||||
MsanPoisonStackFn = M.getOrInsertFunction(
|
||||
"__msan_poison_stack", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy, nullptr);
|
||||
MsanPoisonStackFn =
|
||||
M.getOrInsertFunction("__msan_poison_stack", IRB.getVoidTy(),
|
||||
IRB.getInt8PtrTy(), IntptrTy, nullptr);
|
||||
MsanChainOriginFn = M.getOrInsertFunction(
|
||||
"__msan_chain_origin", IRB.getInt32Ty(), IRB.getInt32Ty(), nullptr);
|
||||
MemmoveFn = M.getOrInsertFunction(
|
||||
|
Loading…
Reference in New Issue
Block a user