From: Bill Wendling Date: Fri, 15 Jul 2011 01:42:32 +0000 (+0000) Subject: Remove setting the bit for personality function. It should be set by the linker. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=833ce06c8ff3a99670b0f06013afb6fbdf903b76;p=oota-llvm.git Remove setting the bit for personality function. It should be set by the linker. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135236 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp index e8da32514b4..9bc9415837a 100644 --- a/lib/MC/MCDwarf.cpp +++ b/lib/MC/MCDwarf.cpp @@ -722,9 +722,6 @@ bool FrameEmitterImpl::EmitCompactUnwind(MCStreamer &Streamer, getDataAlignmentFactor(Streamer), IsEH); if (!Encoding) return false; - // The encoding needs to know we have a personality function. - if (Frame.Personality) - Encoding |= 0x10000000; // The encoding needs to know we have an LSDA. if (Frame.Lsda) Encoding |= 0x40000000;