80 col.

llvm-svn: 30504
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index e5f2d92..2d7500e 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -1608,7 +1608,8 @@
       const Type *SIntPtrTy = UIntPtrTy->getSignedVersion();
       if((CI->getType() == UIntPtrTy || CI->getType() == SIntPtrTy) 
 	 && isa<PointerType>(CI->getOperand(0)->getType())) {
-	Instruction* I2 = new CastInst(CI->getOperand(0), PointerType::get(Type::SByteTy), "ctg", &I);
+	Instruction* I2 = new CastInst(CI->getOperand(0),
+                                    PointerType::get(Type::SByteTy), "ctg", &I);
 	WorkList.push_back(I2);
 	I2 = new GetElementPtrInst(I2, Other, "ctg", &I);
 	WorkList.push_back(I2);