if (C->isAllOnesValue() && !DestTy->isX86_MMXTy())
return Constant::getAllOnesValue(DestTy);
+ // Bitcast of Bitcast can be done using a single cast.
+ ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
+ if (CE && CE->getOpcode() == Instruction::BitCast) {
+ return ConstantExpr::getBitCast(CE->getOperand(0), DestTy);
+ }
+
// The code below only handles casts to vectors currently.
VectorType *DestVTy = dyn_cast<VectorType>(DestTy);
if (DestVTy == 0)
if (DestTy == Src->getType())
return ReplaceInstUsesWith(CI, Src);
+ // Bitcasts are transitive.
+ if (BitCastInst* BSrc = dyn_cast<BitCastInst>(Src)) {
+ return CastInst::Create(Instruction::BitCast, BSrc->getOperand(0), DestTy);
+ }
+
if (PointerType *DstPTy = dyn_cast<PointerType>(DestTy)) {
PointerType *SrcPTy = cast<PointerType>(SrcTy);
Type *DstElTy = DstPTy->getElementType();
; CHECK: uitofp
}
+define <4 x float> @test64(<4 x float> %c) nounwind {
+ %t0 = bitcast <4 x float> %c to <4 x i32>
+ %t1 = bitcast <4 x i32> %t0 to <2 x double>
+ %t2 = bitcast <2 x double> %t1 to <4 x float>
+ ret <4 x float> %t2
+; CHECK: @test64
+; CHECK-NEXT: ret <4 x float> %c
+}
+
+define float @test2c() {
+ ret float extractelement (<2 x float> bitcast (double bitcast (<2 x float> <float -1.000000e+00, float -1.000000e+00> to double) to <2 x float>), i32 0)
+; CHECK: @test2c
+; CHECK-NOT: extractelement
+}