From 814819f6ea7fb0638fe73920299fda0da941a59e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 19 Jan 2010 06:25:51 +0000 Subject: stop using the .lcomm pseudoop on darwin, instead, directly use the .zerofill directive. Streamerize its generation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93868 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCAsmInfo.h | 9 +-------- include/llvm/Target/TargetLoweringObjectFile.h | 1 + 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'include') diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h index 22f1475..82a4787 100644 --- a/include/llvm/MC/MCAsmInfo.h +++ b/include/llvm/MC/MCAsmInfo.h @@ -192,7 +192,7 @@ namespace llvm { /// LCOMMDirective - This is the name of a directive (if supported) that can /// be used to efficiently declare a local (internal) block of zero /// initialized data in the .bss/.data section. The syntax expected is: - /// @verbatim SYMBOLNAME LENGTHINBYTES, ALIGNMENT + /// @verbatim SYMBOLNAME LENGTHINBYTES /// @endverbatim const char *LCOMMDirective; // Defaults to null. @@ -202,10 +202,6 @@ namespace llvm { /// argument that specifies the alignment of the declaration. bool COMMDirectiveTakesAlignment; // Defaults to true. - /// LCOMMDirectiveTakesAlignment - True if LCOMMDirective takes a third - /// argument that specifies the alignment of the declaration. - bool LCOMMDirectiveTakesAlignment; // Defaults to false. - /// HasDotTypeDotSizeDirective - True if the target has .type and .size /// directives, this is true for most ELF targets. bool HasDotTypeDotSizeDirective; // Defaults to true. @@ -418,9 +414,6 @@ namespace llvm { bool getCOMMDirectiveTakesAlignment() const { return COMMDirectiveTakesAlignment; } - bool getLCOMMDirectiveTakesAlignment() const { - return LCOMMDirectiveTakesAlignment; - } bool hasDotTypeDotSizeDirective() const { return HasDotTypeDotSizeDirective; } diff --git a/include/llvm/Target/TargetLoweringObjectFile.h b/include/llvm/Target/TargetLoweringObjectFile.h index 304518a..d3e5cf2 100644 --- a/include/llvm/Target/TargetLoweringObjectFile.h +++ b/include/llvm/Target/TargetLoweringObjectFile.h @@ -259,6 +259,7 @@ class TargetLoweringObjectFileMachO : public TargetLoweringObjectFile { const MCSection *ConstDataSection; const MCSection *DataCoalSection; const MCSection *DataCommonSection; + const MCSection *DataBSSSection; const MCSection *FourByteConstantSection; const MCSection *EightByteConstantSection; const MCSection *SixteenByteConstantSection; -- cgit v1.1