diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-20 18:13:23 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-20 18:13:23 +0000 |
commit | 9d999f58e310ff03790bb32bb77f4e611b93807b (patch) | |
tree | b4664008e9f0eb1ed03adb02aee1d8145a821097 /lib/MC/MCObjectFileInfo.cpp | |
parent | 91e7ccd98bfa3db5f5c5d2ffa1ffb4061043af40 (diff) |
Initialize the EHFrameSection pointer to zero.
This should fix the spurious buildbot errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCObjectFileInfo.cpp')
-rw-r--r-- | lib/MC/MCObjectFileInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/MC/MCObjectFileInfo.cpp b/lib/MC/MCObjectFileInfo.cpp index cdf225ae7b..5540b55b1a 100644 --- a/lib/MC/MCObjectFileInfo.cpp +++ b/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(); |