From: Reid Spencer Date: Mon, 29 May 2006 02:34:34 +0000 (+0000) Subject: Fix grammar in a comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fd20c0ab007a01525d5344e4097e7ae60cb47005;p=oota-llvm.git Fix grammar in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28534 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/llvmAsmParser.y b/lib/AsmParser/llvmAsmParser.y index 927b1203d1b..b8ac7f2867a 100644 --- a/lib/AsmParser/llvmAsmParser.y +++ b/lib/AsmParser/llvmAsmParser.y @@ -72,7 +72,7 @@ static struct PerModuleInfo { std::map LateResolveTypes; /// PlaceHolderInfo - When temporary placeholder objects are created, remember - /// how they were referenced and one which line of the input they came from so + /// how they were referenced and on which line of the input they came from so /// that we can resolve them later and print error messages as appropriate. std::map > PlaceHolderInfo; diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 335bc4ee525..a96efad7445 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -1246,7 +1246,7 @@ void Type::removeAbstractTypeUser(AbstractTypeUser *U) const { } -// refineAbstractTypeTo - This function is used to when it is discovered that +// refineAbstractTypeTo - This function is used when it is discovered that // the 'this' abstract type is actually equivalent to the NewType specified. // This causes all users of 'this' to switch to reference the more concrete type // NewType and for 'this' to be deleted.