summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit3e44ea191713e6bfaf5c86a90bbb745103036c0c (patch)
treedab25a553e398406dde1018611caa5c054997205 /llvm/lib/CodeGen/IntrinsicLowering.cpp
parenta1d7516cb7533ea4bd32ecdcdfef8414eeb9be07 (diff)
downloadbcm5719-llvm-3e44ea191713e6bfaf5c86a90bbb745103036c0c.tar.gz
bcm5719-llvm-3e44ea191713e6bfaf5c86a90bbb745103036c0c.zip
undo 80 column trespassing I caused
llvm-svn: 109092
Diffstat (limited to 'llvm/lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r--llvm/lib/CodeGen/IntrinsicLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp
index 03ae214ae7d..3852ebaf642 100644
--- a/llvm/lib/CodeGen/IntrinsicLowering.cpp
+++ b/llvm/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());
OpenPOWER on IntegriCloud