[llvm-commits] [llvm] r76706 - /llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp

Chris Lattner sabre at nondot.org
Tue Jul 21 17:30:39 PDT 2009


Author: lattner
Date: Tue Jul 21 19:30:39 2009
New Revision: 76706

URL: http://llvm.org/viewvc/llvm-project?rev=76706&view=rev
Log:
don't set the small flag yet.

Modified:
    llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp

Modified: llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp?rev=76706&r1=76705&r2=76706&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/ELFTargetAsmInfo.cpp Tue Jul 21 19:30:39 2009
@@ -157,8 +157,7 @@
   
   if (SecName)
     return getNamedSection(SecName,
-                           SectionFlags::setEntitySize(SectionFlags::Mergeable|
-                                                       SectionFlags::Small,
+                           SectionFlags::setEntitySize(SectionFlags::Mergeable,
                                                        Size));
   
   return getReadOnlySection();  // .rodata





More information about the llvm-commits mailing list