diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-11 22:34:13 +0000 | 
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-11 22:34:13 +0000 | 
| commit | 37f92e25689bacd2308c92f33d01163478cf5ad1 (patch) | |
| tree | 8f4ebfd4ceb92c20cb91f8fdd79f055b46bba570 /lib/Bytecode/Writer/Writer.cpp | |
| parent | 515c97c2301ac56f00f3acc443fc823e3153942e (diff) | |
Fixed spelling and grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8489 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/Writer.cpp')
| -rw-r--r-- | lib/Bytecode/Writer/Writer.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index 096dc69895..b119c3d7f7 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/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<const Value*> &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) {  | 
