diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCAsmInfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h index 1368e1f..a340a12 100644 --- a/include/llvm/MC/MCAsmInfo.h +++ b/include/llvm/MC/MCAsmInfo.h @@ -202,6 +202,10 @@ 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. @@ -410,6 +414,9 @@ namespace llvm { bool getCOMMDirectiveTakesAlignment() const { return COMMDirectiveTakesAlignment; } + bool getLCOMMDirectiveTakesAlignment() const { + return LCOMMDirectiveTakesAlignment; + } bool hasDotTypeDotSizeDirective() const { return HasDotTypeDotSizeDirective; } |