forked from OSchip/llvm-project
parent
c009757761
commit
e408601cec
|
@ -1995,7 +1995,7 @@ Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
|
||||||
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
|
||||||
unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
|
unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
|
||||||
#endif
|
#endif
|
||||||
assert(SrcBitSize == DstBitSize && "BitCast requies types of same width");
|
assert(SrcBitSize == DstBitSize && "BitCast requires types of same width");
|
||||||
return getFoldedCast(Instruction::BitCast, C, DstTy);
|
return getFoldedCast(Instruction::BitCast, C, DstTy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue