Fix 80 cols caught by the linter...
[oota-llvm.git] / lib / Transforms / Instrumentation / MemorySanitizer.cpp
index 45f1df738103749ebbe34152281f1536a163ab75..12612591de8a9a046e99c0a353241e1bc2e72d3e 100644 (file)
@@ -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(