From: Zachary Turner Date: Sun, 15 Feb 2015 20:37:44 +0000 (+0000) Subject: llvm-pdbdump: Fix warning caused by missing sentinel value. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=70e171f7cddab9699eda7c83741e7e2a7353d31b;p=oota-llvm.git llvm-pdbdump: Fix warning caused by missing sentinel value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229331 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-pdbdump/llvm-pdbdump.cpp b/tools/llvm-pdbdump/llvm-pdbdump.cpp index 1254a53a8d1..f350c430a8b 100644 --- a/tools/llvm-pdbdump/llvm-pdbdump.cpp +++ b/tools/llvm-pdbdump/llvm-pdbdump.cpp @@ -81,9 +81,9 @@ static cl::opt DumpMode( clEnumValN(PDB_DumpType::ByObjFile, "compiland", "Display symbols grouped under their containing object " "file."), - clEnumValN( - PDB_DumpType::Both, "both", - "Display symbols grouped by type, and then by object file."))); + clEnumValN(PDB_DumpType::Both, "both", + "Display symbols grouped by type, and then by object file."), + clEnumValEnd)); } #define SET_DUMP_FLAG_FROM_OPT(Var, Flag, Opt) \