LLVM API Documentation
00001 //===---- MCAsmInfoDarwin.h - Darwin 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 defines target asm properties related what form asm statements 00011 // should take in general on Darwin-based targets 00012 // 00013 //===----------------------------------------------------------------------===// 00014 00015 #ifndef LLVM_MC_MCASMINFODARWIN_H 00016 #define LLVM_MC_MCASMINFODARWIN_H 00017 00018 #include "llvm/MC/MCAsmInfo.h" 00019 00020 namespace llvm { 00021 class MCAsmInfoDarwin : public MCAsmInfo { 00022 virtual void anchor(); 00023 public: 00024 explicit MCAsmInfoDarwin(); 00025 }; 00026 } 00027 00028 00029 #endif // LLVM_MC_MCASMINFODARWIN_H