summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-18 01:21:08 +0000
committerChris Lattner <sabre@nondot.org>2010-01-18 01:21:08 +0000
commitaad30363fb410c3e5e08756d972be77833593791 (patch)
tree460c09ec974e2dfb6af880783df85d7b1bcd8102 /include
parent5957c84e09b177aecf8b430c33fd75a36575fb57 (diff)
downloadllvm-aad30363fb410c3e5e08756d972be77833593791.tar.gz
llvm-aad30363fb410c3e5e08756d972be77833593791.tar.bz2
llvm-aad30363fb410c3e5e08756d972be77833593791.tar.xz
switch x86 zerofill emission over to use MCStreamer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index fb69630ff5..1d90feb09b 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -316,6 +316,8 @@ namespace llvm {
const char *getZeroFillDirective() const {
return ZeroFillDirective;
}
+ bool hasZeroFillDirective() const { return ZeroFillDirective != 0; }
+
const char *getNonexecutableStackDirective() const {
return NonexecutableStackDirective;
}