From acb9ed40778b6cfda513c8070fced11b7684150b Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 20 Jul 2011 18:13:23 +0000 Subject: Initialize the EHFrameSection pointer to zero. This should fix the spurious buildbot errors. llvm-svn: 135594 --- llvm/lib/MC/MCObjectFileInfo.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/MC/MCObjectFileInfo.cpp') diff --git a/llvm/lib/MC/MCObjectFileInfo.cpp b/llvm/lib/MC/MCObjectFileInfo.cpp index cdf225a..5540b55 100644 --- a/llvm/lib/MC/MCObjectFileInfo.cpp +++ b/llvm/lib/MC/MCObjectFileInfo.cpp @@ -454,6 +454,7 @@ void MCObjectFileInfo::InitMCObjectFileInfo(StringRef TT, Reloc::Model relocm, CommDirectiveSupportsAlignment = true; SupportsWeakOmittedEHFrame = true; IsFunctionEHFrameSymbolPrivate = true; + EHFrameSection = 0; Triple T(TT); Triple::ArchType Arch = T.getArch(); -- cgit v1.1