mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-13 08:26:02 +00:00
add an insertion operator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -298,6 +298,11 @@ public: // Higher level manipulation routines.
|
|||||||
bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
|
bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
|
||||||
|
TPN.print(OS);
|
||||||
|
return OS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// TreePattern - Represent a pattern, used for instructions, pattern
|
/// TreePattern - Represent a pattern, used for instructions, pattern
|
||||||
/// fragments, etc.
|
/// fragments, etc.
|
||||||
|
Reference in New Issue
Block a user