diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-11 03:40:25 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-11 03:40:25 +0000 |
commit | 19fa38000a5a18311e9b3e6e7d8238f14523ec92 (patch) | |
tree | e6ec4045dc39e3b30522c8e7c67704497c423345 /llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp | |
parent | 1f425648ca86fc5fea8936f43145d8cdb4700357 (diff) | |
download | bcm5719-llvm-19fa38000a5a18311e9b3e6e7d8238f14523ec92.tar.gz bcm5719-llvm-19fa38000a5a18311e9b3e6e7d8238f14523ec92.zip |
Remove some explicit arguments to getELFSection. This is
a leftover from the removal of isExplicit.
llvm-svn: 118774
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp b/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp index 4f7f70bd85f..e2ae79d59ea 100644 --- a/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp +++ b/llvm/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()); } |