diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 3cf08a3..8a420ea 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -157,10 +157,10 @@ public: /// inline bool isRecursive() const { return Recursive; } - /// isLosslesslyConvertableTo - Return true if this type can be converted to + /// isLosslesslyConvertibleTo - Return true if this type can be converted to /// 'Ty' without any reinterpretation of bits. For example, uint to int. /// - bool isLosslesslyConvertableTo(const Type *Ty) const; + bool isLosslesslyConvertibleTo(const Type *Ty) const; /// Here are some useful little methods to query what type derived types are |