From: Reid Spencer Date: Wed, 29 Nov 2006 01:11:01 +0000 (+0000) Subject: Join a split line. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=de33124aa3ff89dab2c0fff27d770c3e26bff830;p=oota-llvm.git Join a split line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31996 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 223624049ee..1e1db20ff2f 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -8236,8 +8236,7 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) { Value *Ptr = InsertCastBefore(I->getOperand(0), PointerType::get(EI.getType()), EI); GetElementPtrInst *GEP = - new GetElementPtrInst(Ptr, EI.getOperand(1), - I->getName() + ".gep"); + new GetElementPtrInst(Ptr, EI.getOperand(1), I->getName() + ".gep"); InsertNewInstBefore(GEP, EI); return new LoadInst(GEP); }