[llvm-commits] [llvm] r135236 - /llvm/trunk/lib/MC/MCDwarf.cpp
Bill Wendling
isanbard at gmail.com
Thu Jul 14 18:42:32 PDT 2011
Author: void
Date: Thu Jul 14 20:42:32 2011
New Revision: 135236
URL: http://llvm.org/viewvc/llvm-project?rev=135236&view=rev
Log:
Remove setting the bit for personality function. It should be set by the linker.
Modified:
llvm/trunk/lib/MC/MCDwarf.cpp
Modified: llvm/trunk/lib/MC/MCDwarf.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCDwarf.cpp?rev=135236&r1=135235&r2=135236&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCDwarf.cpp (original)
+++ llvm/trunk/lib/MC/MCDwarf.cpp Thu Jul 14 20:42:32 2011
@@ -722,9 +722,6 @@
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;
More information about the llvm-commits
mailing list