aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/DataStructure
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 /lib/Analysis/DataStructure
parentd5bd008265c57b31d6496a105e925168c67aaeed (diff)
downloadexternal_llvm-f117cc9ee656fa31ea933127757ffc9cd5f21a76.zip
external_llvm-f117cc9ee656fa31ea933127757ffc9cd5f21a76.tar.gz
external_llvm-f117cc9ee656fa31ea933127757ffc9cd5f21a76.tar.bz2
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/Analysis/DataStructure')
-rw-r--r--lib/Analysis/DataStructure/DataStructure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/DataStructure.cpp b/lib/Analysis/DataStructure/DataStructure.cpp
index 1aad8cf..4f774ac 100644
--- a/lib/Analysis/DataStructure/DataStructure.cpp
+++ b/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,