forked from OSchip/llvm-project
tblgen/OptParser: Use EmitSourceFileHeader.
llvm-svn: 92521
This commit is contained in:
parent
72e47cd670
commit
74be83582c
|
@ -75,26 +75,10 @@ void OptParserEmitter::run(raw_ostream &OS) {
|
|||
Records.getAllDerivedDefinitions("OptionGroup");
|
||||
std::vector<Record*> Opts = Records.getAllDerivedDefinitions("Option");
|
||||
|
||||
if (GenDefs) {
|
||||
OS << "\
|
||||
//=== TableGen'erated File - Option Parsing Definitions ---------*- C++ -*-===//\n \
|
||||
//\n\
|
||||
// Option Parsing Definitions\n\
|
||||
//\n\
|
||||
// Automatically generated file, do not edit!\n\
|
||||
//\n\
|
||||
//===----------------------------------------------------------------------===//\n";
|
||||
} else {
|
||||
OS << "\
|
||||
//=== TableGen'erated File - Option Parsing Table ---------------*- C++ -*-===//\n \
|
||||
//\n\
|
||||
// Option Parsing Definitions\n\
|
||||
//\n\
|
||||
// Automatically generated file, do not edit!\n\
|
||||
//\n\
|
||||
//===----------------------------------------------------------------------===//\n";
|
||||
}
|
||||
OS << "\n";
|
||||
if (GenDefs)
|
||||
EmitSourceFileHeader("Option Parsing Definitions", OS);
|
||||
else
|
||||
EmitSourceFileHeader("Option Parsing Table", OS);
|
||||
|
||||
array_pod_sort(Opts.begin(), Opts.end(), CompareOptionRecords);
|
||||
if (GenDefs) {
|
||||
|
|
Loading…
Reference in New Issue