diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-07-16 23:10:00 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-07-16 23:10:00 +0000 |
commit | b9449d663921fc27d503d048028937c5a19b6f8b (patch) | |
tree | 102d3849ae98828bf1c02b5c72b7d9bcf8fb2c2b /utils/TableGen | |
parent | 469bbdb597f27d6900c95b6d8ae20a45b79ce91b (diff) | |
download | external_llvm-b9449d663921fc27d503d048028937c5a19b6f8b.zip external_llvm-b9449d663921fc27d503d048028937c5a19b6f8b.tar.gz external_llvm-b9449d663921fc27d503d048028937c5a19b6f8b.tar.bz2 |
Update comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108571 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r-- | utils/TableGen/AsmWriterEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/AsmWriterEmitter.cpp b/utils/TableGen/AsmWriterEmitter.cpp index 1e95467..23f13c2 100644 --- a/utils/TableGen/AsmWriterEmitter.cpp +++ b/utils/TableGen/AsmWriterEmitter.cpp @@ -115,7 +115,7 @@ FindUniqueOperandCommands(std::vector<std::string> &UniqueOperandCommands, for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) { const AsmWriterInst *Inst = getAsmWriterInstByID(i); - if (Inst == 0) continue; // PHI, INLINEASM, DBG_LABEL, etc. + if (Inst == 0) continue; // PHI, INLINEASM, PROLOG_LABEL, etc. std::string Command; if (Inst->Operands.empty()) |