mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Implement operator<<(raw_ostream &OS, const Type &T).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69596 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
206d1856ad
commit
5b7ff35503
@ -1428,4 +1428,9 @@ std::ostream &operator<<(std::ostream &OS, const Type &T) {
|
||||
T.print(OS);
|
||||
return OS;
|
||||
}
|
||||
|
||||
raw_ostream &operator<<(raw_ostream &OS, const Type &T) {
|
||||
T.print(OS);
|
||||
return OS;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user