mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-29 14:40:39 +00:00
fix prototype of print, it is (llvm/Pass.h):
virtual void print(std::ostream &O, const Module *M) const; instead of virtual void print(llvm::OStream &O, const Module *M) const; as the docs say git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58337 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
83f5c856d9
commit
52790e5865
@ -977,7 +977,7 @@ implement the virtual <tt>print</tt> method:</p>
|
||||
<div class="doc_text">
|
||||
|
||||
<div class="doc_code"><pre>
|
||||
<b>virtual void</b> print(llvm::OStream &O, <b>const</b> Module *M) <b>const</b>;
|
||||
<b>virtual void</b> print(std::ostream &O, <b>const</b> Module *M) <b>const</b>;
|
||||
</pre></div>
|
||||
|
||||
<p>The <tt>print</tt> method must be implemented by "analyses" in order to print
|
||||
|
Loading…
Reference in New Issue
Block a user