LLVM API Documentation

NVPTXMCAsmInfo.h
Go to the documentation of this file.
00001 //===-- NVPTXMCAsmInfo.h - NVPTX asm properties ----------------*- C++ -*--===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file contains the declaration of the NVPTXMCAsmInfo class.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCASMINFO_H
00015 #define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCASMINFO_H
00016 
00017 #include "llvm/MC/MCAsmInfo.h"
00018 
00019 namespace llvm {
00020 class Target;
00021 class StringRef;
00022 
00023 class NVPTXMCAsmInfo : public MCAsmInfo {
00024   virtual void anchor();
00025 public:
00026   explicit NVPTXMCAsmInfo(StringRef TT);
00027 };
00028 } // namespace llvm
00029 
00030 #endif