From 4bb31bfaa3ed2495dd99304316344dbe54f1d756 Mon Sep 17 00:00:00 2001
From: Dan Gohman
Date: Tue, 30 Mar 2010 20:04:57 +0000
Subject: [PATCH] Fix a grammaro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99917 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/ProgrammersManual.html | 2 +-
lib/Archive/ArchiveWriter.cpp | 2 +-
lib/System/Unix/Path.inc | 4 ++--
lib/Transforms/Utils/SimplifyCFG.cpp | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 9d007566c96..46fd33f40d5 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -3080,7 +3080,7 @@ the lib/VMCore directory.
FunctionType
Subclass of DerivedTypes for function types.
- - bool isVarArg() const: Returns true if its a vararg
+
- bool isVarArg() const: Returns true if it's a vararg
function
- const Type * getReturnType() const: Returns the
return type of the function.
diff --git a/lib/Archive/ArchiveWriter.cpp b/lib/Archive/ArchiveWriter.cpp
index 58fbbf44141..a02601a4aad 100644
--- a/lib/Archive/ArchiveWriter.cpp
+++ b/lib/Archive/ArchiveWriter.cpp
@@ -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 symbols;
std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index a99720c95de..52253b30a57 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -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");
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp
index bdf366a21c2..9f2209dfcfc 100644
--- a/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -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;