From edef14510e36f307dff256faf030abbfb27be674 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 2 May 2017 16:56:09 +0000 Subject: [PDB/CodeView] Read/write codeview inlinee line information. Previously we wrote line information and file checksum information, but we did not write information about inlinee lines and functions. This patch adds support for that. llvm-svn: 301936 --- llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp') diff --git a/llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp b/llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp index 263b632da3f..b2543de7806 100644 --- a/llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp +++ b/llvm/lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp @@ -34,6 +34,7 @@ Error ModuleDebugFragmentRecord::initialize(BinaryStreamRef Stream, switch (Kind) { case ModuleDebugFragmentKind::FileChecksums: case ModuleDebugFragmentKind::Lines: + case ModuleDebugFragmentKind::InlineeLines: break; default: llvm_unreachable("Unexpected debug fragment kind!"); -- cgit v1.2.3