commit | 4ca69bdac60db56a79d2eeb3cc62ced23f3f1d64 | [log] [tgz] |
---|---|---|
author | Reid Kleckner <rnk@google.com> | Thu Nov 16 19:32:53 2017 +0000 |
committer | Reid Kleckner <rnk@google.com> | Thu Nov 16 19:32:53 2017 +0000 |
tree | d7aedfa81dc5671883ca7d8bda60438c60ada61a | |
parent | 170baca6466e6f12b6ebc6bfb2ddb5fff69fc9a7 [diff] [blame] |
Fix -Wreturn-type falling off the end of a function in new DIA code llvm-svn: 318444
diff --git a/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp b/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp index 7f4d06c..24454df 100644 --- a/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp +++ b/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
@@ -58,4 +58,5 @@ return PDB_TableType::InputAssemblyFiles; if (Name16 == DiaTable_Dbg) return PDB_TableType::Dbg; + return PDBTableType::TableInvalid; }