[NFC][TableGen] Fix some clang-tidy warnings

This commit is contained in:
Daniel Grumberg 2020-06-18 18:10:08 +01:00
parent eed45b5fa2
commit c835b5cc1d
1 changed files with 2 additions and 2 deletions

View File

@ -135,8 +135,8 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
OS << "//////////\n";
OS << "// Options\n\n";
for (unsigned i = 0, e = Opts.size(); i != e; ++i) {
const Record &R = *Opts[i];
for (unsigned I = 0, E = Opts.size(); I != E; ++I) {
const Record &R = *Opts[I];
// Start a single option entry.
OS << "OPTION(";