Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
87d16ffd
Commit
87d16ffd
authored
21 years ago
by
Chris Lattner
Browse files
Options
Downloads
Patches
Plain Diff
Add comments
llvm-svn: 11042
parent
8225d83e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/include/llvm/ModuleProvider.h
+4
-1
4 additions, 1 deletion
llvm/include/llvm/ModuleProvider.h
with
4 additions
and
1 deletion
llvm/include/llvm/ModuleProvider.h
+
4
−
1
View file @
87d16ffd
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment