Skip to content

Commit

Permalink
[NFC][TableGen] Fix some clang-tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-grumberg committed Jun 18, 2020
1 parent eed45b5 commit c835b5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/utils/TableGen/OptParserEmitter.cpp
Expand Up @@ -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(";
Expand Down

0 comments on commit c835b5c

Please sign in to comment.