mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-18 01:35:44 +00:00
Add comments
llvm-svn: 11042
This commit is contained in:
parent
c76f82c957
commit
fd937e9d01
@ -35,15 +35,18 @@ public:
|
||||
///
|
||||
Module* getModule() { return TheModule; }
|
||||
|
||||
/// materializeFunction - make sure the given function is fully read.
|
||||
/// materializeFunction - make sure the given function is fully read. Note
|
||||
/// that this can throw an exception if the module is corrupt!
|
||||
///
|
||||
virtual void materializeFunction(Function *F) = 0;
|
||||
|
||||
/// materializeModule - make sure the entire Module has been completely read.
|
||||
/// Note that this can throw an exception if the module is corrupt!
|
||||
///
|
||||
virtual Module* materializeModule() = 0;
|
||||
|
||||
/// releaseModule - no longer delete the Module* when provider is destroyed.
|
||||
/// Note that this can throw an exception if the module is corrupt!
|
||||
///
|
||||
virtual Module* releaseModule() {
|
||||
// Since we're losing control of this Module, we must hand it back complete
|
||||
|
Loading…
x
Reference in New Issue
Block a user