aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-25 07:29:13 +0000
committerChris Lattner <sabre@nondot.org>2010-01-25 07:29:13 +0000
commit6559d7688e24e204af273a1e1252639320a7b309 (patch)
treeaca5870596a7ff9c05125025e01e16a6f557ffae /include
parentd960d3ae79fd169a90f16e0f218cff7d9d9604e8 (diff)
downloadexternal_llvm-6559d7688e24e204af273a1e1252639320a7b309.tar.gz
external_llvm-6559d7688e24e204af273a1e1252639320a7b309.tar.bz2
external_llvm-6559d7688e24e204af273a1e1252639320a7b309.zip
all supported target now have aligned common support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94413 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 5e31dfeb0d..f499189a90 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -195,10 +195,6 @@ namespace llvm {
/// directive.
bool HasLCOMMDirective; // Defaults to false.
- /// COMMDirectiveTakesAlignment - True if COMMDirective take a third
- /// argument that specifies the alignment of the declaration.
- bool COMMDirectiveTakesAlignment; // Defaults to true.
-
/// HasDotTypeDotSizeDirective - True if the target has .type and .size
/// directives, this is true for most ELF targets.
bool HasDotTypeDotSizeDirective; // Defaults to true.
@@ -400,9 +396,6 @@ namespace llvm {
return SetDirective;
}
bool hasLCOMMDirective() const { return HasLCOMMDirective; }
- bool getCOMMDirectiveTakesAlignment() const {
- return COMMDirectiveTakesAlignment;
- }
bool hasDotTypeDotSizeDirective() const {return HasDotTypeDotSizeDirective;}
bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; }
bool hasNoDeadStrip() const { return HasNoDeadStrip; }