diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:54:14 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:54:14 +0000 |
commit | 6b63452c3ad26678b32f93dbca55902a313ee4e9 (patch) | |
tree | db00e2706644d483f011b5c431934ccc6a113ba6 /lib/VMCore/AsmWriter.cpp | |
parent | 4afac18fd4cae1b93907d7db03c5fdb7f2f66d64 (diff) |
Fix spelling/grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index f849fe1cd9..ea8f43c985 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -420,7 +420,7 @@ static void WriteAsOperandInternal(std::ostream &Out, const Value *V, } if (Slot >= 0) Out << "%" << Slot; else if (PrintName) - Out << "<badref>"; // Not embeded into a location? + Out << "<badref>"; // Not embedded into a location? } } } @@ -708,7 +708,7 @@ void AssemblyWriter::printArgument(const Argument *Arg) { Out << "<badref>"; } -// printBasicBlock - This member is called for each basic block in a methd. +// printBasicBlock - This member is called for each basic block in a method. // void AssemblyWriter::printBasicBlock(const BasicBlock *BB) { if (BB->hasName()) { // Print out the label if it exists... @@ -762,7 +762,7 @@ void AssemblyWriter::printInfoComment(const Value &V) { } } -// printInstruction - This member is called for each Instruction in a methd. +// printInstruction - This member is called for each Instruction in a method. // void AssemblyWriter::printInstruction(const Instruction &I) { Out << "\t"; |