From b0d9c3e7fdc952ae7cbe169b01ccaf1b80329403 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 28 Jul 2009 22:23:45 +0000 Subject: [PATCH] Output the EH TType format and base offset only if there are types that we're going to emit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77382 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DwarfException.cpp | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 6a251beda28..60b8acdfbe2 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -527,18 +527,27 @@ void DwarfException::EmitExceptionTable() { // Emit the header. Asm->EmitInt8(dwarf::DW_EH_PE_omit); Asm->EOL("LPStart format (DW_EH_PE_omit)"); - Asm->EmitInt8(TAI->PreferredEHDataFormat(DwarfEncoding::Data, true)); - Asm->EOL("TType format (DW_EH_PE_absptr)"); - Asm->EmitULEB128Bytes(TypeOffset); - Asm->EOL("TType base offset"); + + if (!TypeInfos.empty() || !FilterIds.empty()) { + Asm->EmitInt8(TAI->PreferredEHDataFormat(DwarfEncoding::Data, true)); + // FIXME: The comment here should correspond with what PreferredEHDataFormat + // returned. + Asm->EOL("TType format (DW_EH_PE_xxxxx)"); + Asm->EmitULEB128Bytes(TypeOffset); + Asm->EOL("TType base offset"); + } else { + Asm->EmitInt8(dwarf::DW_EH_PE_omit); + Asm->EOL("TType format (DW_EH_PE_omit)"); + } + Asm->EmitInt8(dwarf::DW_EH_PE_udata4); Asm->EOL("Call site format (DW_EH_PE_udata4)"); Asm->EmitULEB128Bytes(SizeSites); Asm->EOL("Call-site table length"); // Emit the landing pad site information. - for (unsigned i = 0; i < CallSites.size(); ++i) { - CallSiteEntry &S = CallSites[i]; + for (unsigned i = 0, e = CallSites.size(); i < e; ++i) { + const CallSiteEntry &S = CallSites[i]; const char *BeginTag; unsigned BeginNumber; -- 2.34.1