mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +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:
parent
523f6a5848
commit
383fed9c7a
@ -298,6 +298,11 @@ public: // Higher level manipulation routines.
|
||||
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
|
||||
/// fragments, etc.
|
||||
|
Loading…
x
Reference in New Issue
Block a user