2003-10-06 03:27:59 +08:00
|
|
|
//===- TableGenBackend.cpp - Base class for TableGen Backends ---*- C++ -*-===//
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:37:13 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-06 03:27:59 +08:00
|
|
|
//
|
|
|
|
// This file provides useful services for TableGen backends...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "TableGenBackend.h"
|
|
|
|
#include "Record.h"
|
2004-08-01 11:55:39 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2003-10-06 03:27:59 +08:00
|
|
|
void TableGenBackend::EmitSourceFileHeader(const std::string &Desc,
|
|
|
|
std::ostream &OS) const {
|
|
|
|
OS << "//===- TableGen'erated file -------------------------------------*-"
|
|
|
|
" C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate"
|
|
|
|
"d file, do not edit!\n//\n//===------------------------------------"
|
2004-08-17 11:08:28 +08:00
|
|
|
"----------------------------------===//\n\n";
|
2003-10-06 03:27:59 +08:00
|
|
|
}
|
|
|
|
|