diff options
author | Craig Topper <craig.topper@gmail.com> | 2016-01-13 07:20:07 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2016-01-13 07:20:07 +0000 |
commit | df39060f9f6324e82b7545fec21728b0800f735d (patch) | |
tree | 1fd2d8e438fd7b7074e4c112b949ed11c265b54c /llvm/utils | |
parent | 0bd5874c81f11ede15e37d5a3755bd11352e2f46 (diff) | |
download | bcm5719-llvm-df39060f9f6324e82b7545fec21728b0800f735d.tar.gz bcm5719-llvm-df39060f9f6324e82b7545fec21728b0800f735d.zip |
[TableGen] Fix up some stale comments in the AsmMatcher. NFC
llvm-svn: 257580
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/TableGen/AsmWriterEmitter.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/AsmWriterEmitter.cpp b/llvm/utils/TableGen/AsmWriterEmitter.cpp index 40dea9db41d..10864246abd 100644 --- a/llvm/utils/TableGen/AsmWriterEmitter.cpp +++ b/llvm/utils/TableGen/AsmWriterEmitter.cpp @@ -291,8 +291,6 @@ void AsmWriterEmitter::EmitPrintInstruction(raw_ostream &O) { /// OpcodeInfo - This encodes the index of the string to use for the first /// chunk of the output as well as indices used for operand printing. - /// To reduce the number of unhandled cases, we expand the size from 32-bit - /// to 32+16 = 48-bit. std::vector<uint64_t> OpcodeInfo; // Add all strings to the string table upfront so it can generate an optimized @@ -495,9 +493,9 @@ void AsmWriterEmitter::EmitPrintInstruction(raw_ostream &O) { std::reverse(Instructions.begin(), Instructions.end()); - // Now that we've emitted all of the operand info that fit into 32 bits, emit + // Now that we've emitted all of the operand info that fit into 64 bits, emit // information for those instructions that are left. This is a less dense - // encoding, but we expect the main 32-bit table to handle the majority of + // encoding, but we expect the main 64-bit table to handle the majority of // instructions. if (!Instructions.empty()) { // Find the opcode # of inline asm. |