Fix a grammaro.
authorDan Gohman <gohman@apple.com>
Tue, 30 Mar 2010 20:04:57 +0000 (20:04 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 30 Mar 2010 20:04:57 +0000 (20:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99917 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html
lib/Archive/ArchiveWriter.cpp
lib/System/Unix/Path.inc
lib/Transforms/Utils/SimplifyCFG.cpp

index 9d007566c963415494d1c45fac9941c0786cbfba..46fd33f40d552827589b83ebfbc05c70a1539053 100644 (file)
@@ -3080,7 +3080,7 @@ the <tt>lib/VMCore</tt> directory.</p>
   <dt><tt><a name="FunctionType">FunctionType</a></tt></dt>
   <dd>Subclass of DerivedTypes for function types.
     <ul>
-      <li><tt>bool isVarArg() const</tt>: Returns true if its a vararg
+      <li><tt>bool isVarArg() const</tt>: Returns true if it's a vararg
       function</li>
       <li><tt> const Type * getReturnType() const</tt>: Returns the
       return type of the function.</li>
index 58fbbf44141ccdfba512fb92173129b1b374b726..a02601a4aadc8d4ce2d889e0f4dcd4a32dd3a468 100644 (file)
@@ -220,7 +220,7 @@ Archive::writeMember(
   }
 
   // Now that we have the data in memory, update the
-  // symbol table if its a bitcode file.
+  // symbol table if it's a bitcode file.
   if (CreateSymbolTable && member.isBitcode()) {
     std::vector<std::string> symbols;
     std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
index a99720c95ded95639f560000133388915a0e9e6b..52253b30a570329aea9491356e1b5e1f440a9644 100644 (file)
@@ -454,7 +454,7 @@ Path::canWrite() const {
 
 bool
 Path::isRegularFile() const {
-  // Get the status so we can determine if its a file or directory
+  // Get the status so we can determine if it's a file or directory
   struct stat buf;
 
   if (0 != stat(path.c_str(), &buf))
@@ -736,7 +736,7 @@ Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
 
 bool
 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
-  // Get the status so we can determine if its a file or directory
+  // Get the status so we can determine if it's a file or directory.
   struct stat buf;
   if (0 != stat(path.c_str(), &buf)) {
     MakeErrMsg(ErrStr, path + ": can't get status of file");
index bdf366a21c2f0ad16b369cf41c763a8c5881bb57..9f2209dfcfc06d6206769da28920b61dfa9366a5 100644 (file)
@@ -224,7 +224,7 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB,
     if (BI->isUnconditional() && BI->getSuccessor(0) == BB) {
       if (!AggressiveInsts) return false;
       // Okay, it looks like the instruction IS in the "condition".  Check to
-      // see if its a cheap instruction to unconditionally compute, and if it
+      // see if it's a cheap instruction to unconditionally compute, and if it
       // only uses stuff defined outside of the condition.  If so, hoist it out.
       if (!I->isSafeToSpeculativelyExecute())
         return false;