diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 18:45:36 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 18:45:36 +0000 |
commit | f117cc9ee656fa31ea933127757ffc9cd5f21a76 (patch) | |
tree | 4032b02392b88c6a10167f891961505f7d22efeb /lib/Transforms/Scalar | |
parent | d5bd008265c57b31d6496a105e925168c67aaeed (diff) |
s/convertable/convertible/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index d00cefd37d..d73ee1e40c 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -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 |