2017-02-11 00:27:28 +00:00
|
|
|
//===- llvm/MC/MCAsmInfoELF.h - ELF Asm info --------------------*- C++ -*-===//
|
2013-10-16 01:34:32 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2013-10-16 01:34:32 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCASMINFOELF_H
|
|
|
|
#define LLVM_MC_MCASMINFOELF_H
|
|
|
|
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2017-02-11 00:27:28 +00:00
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
class MCAsmInfoELF : public MCAsmInfo {
|
|
|
|
virtual void anchor();
|
2015-05-21 19:20:38 +00:00
|
|
|
MCSection *getNonexecutableStackSection(MCContext &Ctx) const final;
|
2014-10-15 15:44:16 +00:00
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
protected:
|
|
|
|
MCAsmInfoELF();
|
|
|
|
};
|
|
|
|
|
2017-02-11 00:27:28 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_MC_MCASMINFOELF_H
|