kparzysz-quic opened a new pull request, #11851:
URL: https://github.com/apache/tvm/pull/11851
The only use of that function is commented out. `llvm::Module` can be
printed directly to `llvm::raw_ostream` via <<, so it's quite easy to insert
printing code when needed:
```
std::string s;
llvm::raw_string_ostream os(s);
os << module; // s (or os.str()) has the LLVM IR text
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]