From: Craig Topper Date: Fri, 3 Nov 2017 05:19:34 +0000 (+0000) Subject: [TableGen] Add an extra blank line to DAGISel output file to separate functions. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06d5ebdc63193e9cc621d9d85d57b4205981f692;p=llvm [TableGen] Add an extra blank line to DAGISel output file to separate functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317298 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/DAGISelMatcherEmitter.cpp b/utils/TableGen/DAGISelMatcherEmitter.cpp index 76370cdad67..672f9f8620f 100644 --- a/utils/TableGen/DAGISelMatcherEmitter.cpp +++ b/utils/TableGen/DAGISelMatcherEmitter.cpp @@ -974,7 +974,7 @@ void llvm::EmitMatcherTable(const Matcher *TheMatcher, OS << " #undef TARGET_VAL\n"; OS << " SelectCodeCommon(N, MatcherTable,sizeof(MatcherTable));\n"; - OS << "}\n"; + OS << "}\n\n"; // Next up, emit the function for node and pattern predicates: MatcherEmitter.EmitPredicateFunctions(OS);