mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
s/convertable/convertible/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6248 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -811,7 +811,7 @@ static inline bool isEliminableCastOfCast(const CastInst &CI,
|
||||
// It is legal to eliminate the instruction if casting A->B->A if the sizes
|
||||
// are identical and the bits don't get reinterpreted (for example
|
||||
// int->float->int would not be allowed)
|
||||
if (SrcTy == DstTy && SrcTy->isLosslesslyConvertableTo(MidTy))
|
||||
if (SrcTy == DstTy && SrcTy->isLosslesslyConvertibleTo(MidTy))
|
||||
return true;
|
||||
|
||||
// Allow free casting and conversion of sizes as long as the sign doesn't
|
||||
|
Reference in New Issue
Block a user