Fix 80 col violation.
authorEvan Cheng <evan.cheng@apple.com>
Mon, 22 Mar 2010 22:44:31 +0000 (22:44 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Mon, 22 Mar 2010 22:44:31 +0000 (22:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99224 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/BuildLibCalls.cpp

index b44f019760448d04048aba2809442b0418cf3b2c..2e6edfa26732ce7e5f544c673f842a93fbe499f3 100644 (file)
@@ -123,7 +123,7 @@ Value *llvm::EmitMemCpy(Value *Dst, Value *Src, Value *Len,
 /// EmitMemMove - Emit a call to the memmove function to the builder.  This
 /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
 Value *llvm::EmitMemMove(Value *Dst, Value *Src, Value *Len,
-                                                      unsigned Align, IRBuilder<> &B, const TargetData *TD) {
+                         unsigned Align, IRBuilder<> &B, const TargetData *TD) {
   Module *M = B.GetInsertBlock()->getParent()->getParent();
   LLVMContext &Context = B.GetInsertBlock()->getContext();
   const Type *Ty = TD->getIntPtrType(Context);