summaryrefslogtreecommitdiff
path: root/lib/CodeGen/IntrinsicLowering.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-07-22 10:37:47 +0000
committerGabor Greif <ggreif@gmail.com>2010-07-22 10:37:47 +0000
commita399781289092fcdceb58b21174229f4373c4191 (patch)
treedd0c785b9a2c44961f7b8d2de14ebee918dae26b /lib/CodeGen/IntrinsicLowering.cpp
parent30d35b8720cb148eb4cc417b3710e0d66ce5ec95 (diff)
downloadllvm-a399781289092fcdceb58b21174229f4373c4191.tar.gz
llvm-a399781289092fcdceb58b21174229f4373c4191.tar.bz2
llvm-a399781289092fcdceb58b21174229f4373c4191.tar.xz
undo 80 column trespassing I caused
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r--lib/CodeGen/IntrinsicLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp
index 03ae214ae7..3852ebaf64 100644
--- a/lib/CodeGen/IntrinsicLowering.cpp
+++ b/lib/CodeGen/IntrinsicLowering.cpp
@@ -481,7 +481,8 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
Value *Ops[3];
Ops[0] = CI->getArgOperand(0);
// Extend the amount to i32.
- Ops[1] = Builder.CreateIntCast(CI->getArgOperand(1), Type::getInt32Ty(Context),
+ Ops[1] = Builder.CreateIntCast(CI->getArgOperand(1),
+ Type::getInt32Ty(Context),
/* isSigned */ false);
Ops[2] = Size;
ReplaceCallWith("memset", CI, Ops, Ops+3, CI->getArgOperand(0)->getType());