[llvm-commits] [llvm] r81750 - /llvm/trunk/lib/VMCore/Type.cpp
Nick Lewycky
nicholas at mxc.ca
Sun Sep 13 19:25:34 PDT 2009
Author: nicholas
Date: Sun Sep 13 21:25:34 2009
New Revision: 81750
URL: http://llvm.org/viewvc/llvm-project?rev=81750&view=rev
Log:
Fix a pair of comment typos.
Modified:
llvm/trunk/lib/VMCore/Type.cpp
Modified: llvm/trunk/lib/VMCore/Type.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Type.cpp?rev=81750&r1=81749&r2=81750&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Type.cpp (original)
+++ llvm/trunk/lib/VMCore/Type.cpp Sun Sep 13 21:25:34 2009
@@ -509,7 +509,8 @@
// 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 @@
// 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())
More information about the llvm-commits
mailing list