diff options
Diffstat (limited to 'llvm/tools/llvm-pdbdump/EnumDumper.cpp')
-rw-r--r-- | llvm/tools/llvm-pdbdump/EnumDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbdump/EnumDumper.cpp b/llvm/tools/llvm-pdbdump/EnumDumper.cpp index 02c3df748be..43b6018ffed 100644 --- a/llvm/tools/llvm-pdbdump/EnumDumper.cpp +++ b/llvm/tools/llvm-pdbdump/EnumDumper.cpp @@ -25,7 +25,7 @@ EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} void EnumDumper::start(const PDBSymbolTypeEnum &Symbol) { WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); - if (!opts::NoEnumDefs) { + if (!opts::pretty::NoEnumDefs) { auto BuiltinType = Symbol.getUnderlyingType(); if (BuiltinType->getBuiltinType() != PDB_BuiltinType::Int || BuiltinType->getLength() != 4) { |