Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
810 B

  1. //===- llvm/TableGen/TableGenBackend.h - Backend utilities ------*- C++ -*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // Useful utilities for TableGen backends.
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #ifndef LLVM_TABLEGEN_TABLEGENBACKEND_H
  14. #define LLVM_TABLEGEN_TABLEGENBACKEND_H
  15. #include "llvm/ADT/StringRef.h"
  16. namespace llvm {
  17. class raw_ostream;
  18. /// emitSourceFileHeader - Output a LLVM style file header to the specified
  19. /// raw_ostream.
  20. void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
  21. } // End llvm namespace
  22. #endif