aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-03-22 22:44:31 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-03-22 22:44:31 +0000
commitf17f976e6d295849932abae94d7d29bf04a16211 (patch)
tree1e43d81a1504f3531f82130fd897d198d21a6516 /lib/Transforms
parente76111a0ed9970f98e133d6b3e8d697c94298e26 (diff)
downloadexternal_llvm-f17f976e6d295849932abae94d7d29bf04a16211.tar.gz
external_llvm-f17f976e6d295849932abae94d7d29bf04a16211.tar.bz2
external_llvm-f17f976e6d295849932abae94d7d29bf04a16211.zip
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Utils/BuildLibCalls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/BuildLibCalls.cpp b/lib/Transforms/Utils/BuildLibCalls.cpp
index b44f019760..2e6edfa267 100644
--- a/lib/Transforms/Utils/BuildLibCalls.cpp
+++ b/lib/Transforms/Utils/BuildLibCalls.cpp
@@ -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);