Current Path : /usr/src/contrib/llvm/include/llvm/MC/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h |
//===-- 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. // //===----------------------------------------------------------------------===// #ifndef LLVM_COFF_TARGET_ASM_INFO_H #define LLVM_COFF_TARGET_ASM_INFO_H #include "llvm/MC/MCAsmInfo.h" namespace llvm { class MCAsmInfoCOFF : public MCAsmInfo { virtual void anchor(); protected: explicit MCAsmInfoCOFF(); }; class MCAsmInfoMicrosoft : public MCAsmInfoCOFF { virtual void anchor(); protected: explicit MCAsmInfoMicrosoft(); }; class MCAsmInfoGNUCOFF : public MCAsmInfoCOFF { virtual void anchor(); protected: explicit MCAsmInfoGNUCOFF(); }; } #endif // LLVM_COFF_TARGET_ASM_INFO_H