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 | e5838c4d72871eb7d7304c045010bb3b72028cdb (patch) | |
tree | 7630f9f1c1d207098e71ccfcc27e9895c0922650 /llvm/lib/Analysis/DataStructure/DataStructure.cpp | |
parent | 656304bb6c6b1b1f7711e1661fc7fade487e7ec3 (diff) | |
download | bcm5719-llvm-e5838c4d72871eb7d7304c045010bb3b72028cdb.tar.gz bcm5719-llvm-e5838c4d72871eb7d7304c045010bb3b72028cdb.zip |
s/convertable/convertible/g
llvm-svn: 6248
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/DataStructure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/DataStructure.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/DataStructure.cpp b/llvm/lib/Analysis/DataStructure/DataStructure.cpp index 1aad8cf69ee..4f774acb0ad 100644 --- a/llvm/lib/Analysis/DataStructure/DataStructure.cpp +++ b/llvm/lib/Analysis/DataStructure/DataStructure.cpp @@ -336,8 +336,8 @@ bool DSNode::mergeTypeInfo(const Type *NewTy, unsigned Offset, // Check to see if we have a compatible, but different type... if (NewTySize == SubTypeSize) { - // Check to see if this type is obviously convertable... int -> uint f.e. - if (NewTy->isLosslesslyConvertableTo(SubType)) + // Check to see if this type is obviously convertible... int -> uint f.e. + if (NewTy->isLosslesslyConvertibleTo(SubType)) return false; // Check to see if we have a pointer & integer mismatch going on here, |