mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
improve comments, the matcher is now feature complete, on to codegen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
11979aa23e
commit
781f359c1a
@ -186,7 +186,11 @@ EmitMatcher(const MatcherNode *N, unsigned Indent) {
|
||||
const ComplexPattern &Pattern =
|
||||
cast<CheckComplexPatMatcherNode>(N)->getPattern();
|
||||
OS << "OPC_CheckComplexPat, " << getComplexPat(Pattern) << ',';
|
||||
OS.PadToColumn(CommentIndent) << "// " << Pattern.getSelectFunc() << '\n';
|
||||
OS.PadToColumn(CommentIndent) << "// " << Pattern.getSelectFunc();
|
||||
OS << ": " << Pattern.getNumOperands() << " operands";
|
||||
if (Pattern.hasProperty(SDNPHasChain))
|
||||
OS << " + chain result and input";
|
||||
OS << '\n';
|
||||
return 2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user