From 70e171f7cddab9699eda7c83741e7e2a7353d31b Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Sun, 15 Feb 2015 20:37:44 +0000 Subject: [PATCH] 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 --- tools/llvm-pdbdump/llvm-pdbdump.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) \