summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-04 18:39:51 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-04 18:39:51 +0000
commit5e47632b8fa1a98283c09ca88cf09600862e4849 (patch)
tree43d7c9e146bc7cf8aee88bc6ac5616b9016cf530 /include
parent506eb6df35d5b32239f0afe7eeffc65d7bb7bd63 (diff)
downloadllvm-5e47632b8fa1a98283c09ca88cf09600862e4849.tar.gz
llvm-5e47632b8fa1a98283c09ca88cf09600862e4849.tar.bz2
llvm-5e47632b8fa1a98283c09ca88cf09600862e4849.tar.xz
Every target uses .align. Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index c36d8585e3..b74ae84635 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -189,11 +189,6 @@ namespace llvm {
//===--- Alignment Information ----------------------------------------===//
- /// AlignDirective - The directive used to emit round up to an alignment
- /// boundary.
- ///
- const char *AlignDirective; // Defaults to "\t.align\t"
-
/// AlignmentIsInBytes - If this is true (the default) then the asmprinter
/// emits ".align N" directives, where N is the number of bytes to align to.
/// Otherwise, it emits ".align log2(N)", e.g. 3 to align to an 8 byte
@@ -456,9 +451,6 @@ namespace llvm {
const char *getAscizDirective() const {
return AscizDirective;
}
- const char *getAlignDirective() const {
- return AlignDirective;
- }
bool getAlignmentIsInBytes() const {
return AlignmentIsInBytes;
}