diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:25:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:25:51 +0000 |
commit | 814819f6ea7fb0638fe73920299fda0da941a59e (patch) | |
tree | b8e9a2368cf9e4ee1579017f894644b088f65b53 /include | |
parent | 258281d8ac7b6ab61d64948340038e5f6692e3c0 (diff) | |
download | external_llvm-814819f6ea7fb0638fe73920299fda0da941a59e.zip external_llvm-814819f6ea7fb0638fe73920299fda0da941a59e.tar.gz external_llvm-814819f6ea7fb0638fe73920299fda0da941a59e.tar.bz2 |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCAsmInfo.h | 9 | ||||
-rw-r--r-- | include/llvm/Target/TargetLoweringObjectFile.h | 1 |
2 files changed, 2 insertions, 8 deletions
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 <LCOMMDirective> SYMBOLNAME LENGTHINBYTES, ALIGNMENT + /// @verbatim <LCOMMDirective> 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; |