aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 18:37:01 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 18:37:01 +0000
commitf03ffd13f8f31fb8ead74b94eb2ef71b80ac7739 (patch)
treec755c2306f0e27a9e60ea7ee903b130160a16515 /include
parente45ab8a0a90e4f3a59d8c38038ae3e495ee1fef3 (diff)
downloadexternal_llvm-f03ffd13f8f31fb8ead74b94eb2ef71b80ac7739.zip
external_llvm-f03ffd13f8f31fb8ead74b94eb2ef71b80ac7739.tar.gz
external_llvm-f03ffd13f8f31fb8ead74b94eb2ef71b80ac7739.tar.bz2
remove MAI::ZeroDirectiveSuffix, which is only used by MASM,
which we don't support anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 82a4787..0be2753 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -113,7 +113,6 @@ namespace llvm {
/// "\t.zero\t" and "\t.space\t". If this is set to null, the
/// Data*bitsDirective's will be used to emit zero bytes.
const char *ZeroDirective; // Defaults to "\t.zero\t"
- const char *ZeroDirectiveSuffix; // Defaults to ""
/// AsciiDirective - This directive allows emission of an ascii string with
/// the standard C escape characters embedded into it.
@@ -375,9 +374,6 @@ namespace llvm {
const char *getZeroDirective() const {
return ZeroDirective;
}
- const char *getZeroDirectiveSuffix() const {
- return ZeroDirectiveSuffix;
- }
const char *getAsciiDirective() const {
return AsciiDirective;
}