add another const

llvm-svn: 78487
This commit is contained in:
Chris Lattner 2009-08-08 19:16:05 +00:00
parent 099003bc19
commit 16cf1967f5
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
// Emit code to search the table.
OS << " // Search the table.\n";
OS << " for (MatchEntry *it = MatchTable, "
OS << " for (const MatchEntry *it = MatchTable, "
<< "*ie = MatchTable + " << Info.Instructions.size()
<< "; it != ie; ++it) {\n";
for (unsigned i = 0; i != MaxNumOperands; ++i) {