[llvm-commits] [llvm] r78939 - /llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h

Bruno Cardoso Lopes bruno.cardoso at gmail.com
Thu Aug 13 14:10:28 PDT 2009


Author: bruno
Date: Thu Aug 13 16:10:28 2009
New Revision: 78939

URL: http://llvm.org/viewvc/llvm-project?rev=78939&view=rev
Log:
Add a method to return BSSSection from TargetLoweringObjectFile

Modified:
    llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h

Modified: llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h?rev=78939&r1=78938&r2=78939&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLoweringObjectFile.h Thu Aug 13 16:10:28 2009
@@ -101,6 +101,7 @@
   
   const MCSection *getTextSection() const { return TextSection; }
   const MCSection *getDataSection() const { return DataSection; }
+  const MCSection *getBSSSection() const { return BSSSection; }
   const MCSection *getStaticCtorSection() const { return StaticCtorSection; }
   const MCSection *getStaticDtorSection() const { return StaticDtorSection; }
   const MCSection *getLSDASection() const { return LSDASection; }





More information about the llvm-commits mailing list