diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-09-14 02:25:34 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-09-14 02:25:34 +0000 |
commit | a22585ada99120d12d659ed6ecfc112231276130 (patch) | |
tree | 85e9cb365f08f6990771f0b679c0ea9b2fdd0f40 /llvm | |
parent | 22c4a497ab3547ff018886dbc59f39b78e40340a (diff) | |
download | bcm5719-llvm-a22585ada99120d12d659ed6ecfc112231276130.tar.gz bcm5719-llvm-a22585ada99120d12d659ed6ecfc112231276130.zip |
Fix a pair of comment typos.
llvm-svn: 81750
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/VMCore/Type.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/Type.cpp b/llvm/lib/VMCore/Type.cpp index 1abeffa99ff..19c91c5f03d 100644 --- a/llvm/lib/VMCore/Type.cpp +++ b/llvm/lib/VMCore/Type.cpp @@ -509,7 +509,8 @@ void DerivedType::dropAllTypeUses() { // Change the rest of the types to be Int32Ty's. It doesn't matter what we // pick so long as it doesn't point back to this type. We choose something - // concrete to avoid overhead for adding to AbstracTypeUser lists and stuff. + // concrete to avoid overhead for adding to AbstractTypeUser lists and + // stuff. for (unsigned i = 1, e = NumContainedTys; i != e; ++i) ContainedTys[i] = Type::getInt32Ty(getContext()); } @@ -1046,7 +1047,7 @@ void DerivedType::unlockedRefineAbstractTypeTo(const Type *NewType) { // refined, that we will not continue using a dead reference... // PATypeHolder NewTy(NewType); - // Any PATypeHolders referring to this type will now automatically forward o + // Any PATypeHolders referring to this type will now automatically forward to // the type we are resolved to. ForwardType = NewType; if (NewType->isAbstract()) |