aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Type.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-05-20 18:45:36 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-05-20 18:45:36 +0000
commitf117cc9ee656fa31ea933127757ffc9cd5f21a76 (patch)
tree4032b02392b88c6a10167f891961505f7d22efeb /include/llvm/Type.h
parentd5bd008265c57b31d6496a105e925168c67aaeed (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 'include/llvm/Type.h')
-rw-r--r--include/llvm/Type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index 3cf08a3bb5..8a420ea805 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