2017-02-11 01:27:28 +01:00
|
|
|
//===- MCAsmInfoCOFF.h - COFF asm properties --------------------*- C++ -*-===//
|
2009-08-22 22:58:17 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2009-08-22 22:58:17 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-08-22 22:48:53 +02:00
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#ifndef LLVM_MC_MCASMINFOCOFF_H
|
|
|
|
#define LLVM_MC_MCASMINFOCOFF_H
|
2009-08-22 22:58:17 +02:00
|
|
|
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-02-11 01:27:28 +01:00
|
|
|
class MCAsmInfoCOFF : public MCAsmInfo {
|
|
|
|
virtual void anchor();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit MCAsmInfoCOFF();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MCAsmInfoMicrosoft : public MCAsmInfoCOFF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit MCAsmInfoMicrosoft();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MCAsmInfoGNUCOFF : public MCAsmInfoCOFF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit MCAsmInfoGNUCOFF();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
2009-08-22 22:58:17 +02:00
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#endif // LLVM_MC_MCASMINFOCOFF_H
|