aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SystemZ
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-11-11 03:40:25 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-11-11 03:40:25 +0000
commit3f2d13c98eb04962bf6fcfdcc6f62789bc820d79 (patch)
treeda1b46da14411bd74964917b969263126e7eab65 /lib/Target/SystemZ
parent928f3325a70384ee91af5768f628cf0748879b11 (diff)
downloadexternal_llvm-3f2d13c98eb04962bf6fcfdcc6f62789bc820d79.zip
external_llvm-3f2d13c98eb04962bf6fcfdcc6f62789bc820d79.tar.gz
external_llvm-3f2d13c98eb04962bf6fcfdcc6f62789bc820d79.tar.bz2
Remove some explicit arguments to getELFSection. This is
a leftover from the removal of isExplicit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ')
-rw-r--r--lib/Target/SystemZ/SystemZMCAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZMCAsmInfo.cpp b/lib/Target/SystemZ/SystemZMCAsmInfo.cpp
index 4f7f70b..e2ae79d 100644
--- a/lib/Target/SystemZ/SystemZMCAsmInfo.cpp
+++ b/lib/Target/SystemZ/SystemZMCAsmInfo.cpp
@@ -25,5 +25,5 @@ SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, StringRef TT) {
const MCSection *SystemZMCAsmInfo::
getNonexecutableStackSection(MCContext &Ctx) const{
return Ctx.getELFSection(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
- 0, SectionKind::getMetadata(), false);
+ 0, SectionKind::getMetadata());
}