Skip to content
Snippets Groups Projects
Commit 87d16ffd authored by Chris Lattner's avatar Chris Lattner
Browse files

Add comments

llvm-svn: 11042
parent 8225d83e
No related branches found
No related tags found
No related merge requests found
...@@ -35,15 +35,18 @@ public: ...@@ -35,15 +35,18 @@ public:
/// ///
Module* getModule() { return TheModule; } 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; virtual void materializeFunction(Function *F) = 0;
/// materializeModule - make sure the entire Module has been completely read. /// 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; virtual Module* materializeModule() = 0;
/// releaseModule - no longer delete the Module* when provider is destroyed. /// 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() { virtual Module* releaseModule() {
// Since we're losing control of this Module, we must hand it back complete // Since we're losing control of this Module, we must hand it back complete
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment