LLVM API Documentation
00001 //===- llvm/TableGen/TableGenBackend.h - Backend utilities ------*- 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 // Useful utilities for TableGen backends. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_TABLEGEN_TABLEGENBACKEND_H 00015 #define LLVM_TABLEGEN_TABLEGENBACKEND_H 00016 00017 #include "llvm/ADT/StringRef.h" 00018 00019 namespace llvm { 00020 00021 class raw_ostream; 00022 00023 /// emitSourceFileHeader - Output an LLVM style file header to the specified 00024 /// raw_ostream. 00025 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS); 00026 00027 } // End llvm namespace 00028 00029 #endif