From 8652c13f1345ee8a0692be872981fcb0103d0e35 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 20 Sep 2006 01:10:02 +0000 Subject: [PATCH] 80 col. llvm-svn: 30504 --- lib/Transforms/Scalar/InstructionCombining.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index e5f2d9294eb..2d7500e0b89 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -1608,7 +1608,8 @@ FoundSExt: const Type *SIntPtrTy = UIntPtrTy->getSignedVersion(); if((CI->getType() == UIntPtrTy || CI->getType() == SIntPtrTy) && isa(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);