2009-08-22 20:58:17 +00:00
|
|
|
//===-- MCAsmInfoCOFF.h - COFF asm properties -------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-08-22 20:48:53 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
#ifndef LLVM_COFF_TARGET_ASM_INFO_H
|
|
|
|
#define LLVM_COFF_TARGET_ASM_INFO_H
|
|
|
|
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-22 21:03:30 +00:00
|
|
|
class MCAsmInfoCOFF : public MCAsmInfo {
|
2009-08-22 20:58:17 +00:00
|
|
|
protected:
|
2009-08-22 21:03:30 +00:00
|
|
|
explicit MCAsmInfoCOFF();
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif // LLVM_COFF_TARGET_ASM_INFO_H
|