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/InstructionWriter.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/InstructionWriter.cpp')
-rw-r--r-- | lib/Bytecode/Writer/InstructionWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bytecode/Writer/InstructionWriter.cpp b/lib/Bytecode/Writer/InstructionWriter.cpp index 64dc65e9d6..da32c03e70 100644 --- a/lib/Bytecode/Writer/InstructionWriter.cpp +++ b/lib/Bytecode/Writer/InstructionWriter.cpp @@ -52,7 +52,7 @@ static void outputInstructionFormat0(const Instruction *I, unsigned Opcode, } -// outputInstrVarArgsCall - Output the obsurdly annoying varargs function calls. +// outputInstrVarArgsCall - Output the absurdly annoying varargs function calls. // This are more annoying than most because the signature of the call does not // tell us anything about the types of the arguments in the varargs portion. // Because of this, we encode (as type 0) all of the argument types explicitly @@ -271,6 +271,6 @@ void BytecodeWriter::processInstruction(const Instruction &I) { } // If we weren't handled before here, we either have a large number of - // operands or a large operand index that we are refering to. + // operands or a large operand index that we are referring to. outputInstructionFormat0(&I, Opcode, Table, Type, Out); } |