From acda7df68b64102131b4e302c80c842e0d30b870 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 11 Sep 2003 22:34:13 +0000 Subject: Fixed spelling and grammar. llvm-svn: 8489 --- llvm/lib/Bytecode/Writer/Writer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp') diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 096dc69895c..b119c3d7f7d 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -3,7 +3,7 @@ // This library implements the functionality defined in llvm/Bytecode/Writer.h // // Note that this file uses an unusual technique of outputting all the bytecode -// to a deque of unsigned char's, then copies the deque to an ostream. The +// to a deque of unsigned chare, then copies the deque to an ostream. The // reason for this is that we must do "seeking" in the stream to do back- // patching, and some very important ostreams that we want to support (like // pipes) do not support seeking. :( :( :( @@ -143,7 +143,7 @@ void BytecodeWriter::outputConstants(bool isFunction) { const std::vector &Plane = Table.getPlane(pno); if (!Plane.empty()) { // Skip empty type planes... unsigned ValNo = 0; - if (isFunction) // Don't reemit module constants + if (isFunction) // Don't re-emit module constants ValNo += Table.getModuleLevel(pno); if (pno >= Type::FirstDerivedTyID) { -- cgit v1.2.3