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
8157a90b
"polly/git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "100661422869bb7c793c4de83ab8d779374c8261"
Commit
8157a90b
authored
22 years ago
by
Chris Lattner
Browse files
Options
Downloads
Patches
Plain Diff
s/Method/Function in classname
llvm-svn: 2335
parent
5948d72c
No related branches found
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/Transforms/Utils/UnifyFunctionExitNodes.h
+4
-4
4 additions, 4 deletions
llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
with
4 additions
and
4 deletions
llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
+
4
−
4
View file @
8157a90b
...
...
@@ -11,11 +11,11 @@
#include
"llvm/Pass.h"
struct
Unify
Method
ExitNodes
:
public
FunctionPass
{
struct
Unify
Function
ExitNodes
:
public
FunctionPass
{
BasicBlock
*
ExitNode
;
public:
static
AnalysisID
ID
;
// Pass ID
Unify
Method
ExitNodes
(
AnalysisID
id
=
ID
)
:
ExitNode
(
0
)
{
assert
(
ID
==
id
);
}
Unify
Function
ExitNodes
(
AnalysisID
id
=
ID
)
:
ExitNode
(
0
)
{
assert
(
ID
==
id
);
}
// UnifyAllExitNodes - Unify all exit nodes of the CFG by creating a new
// BasicBlock, and converting all returns to unconditional branches to this
...
...
@@ -37,8 +37,8 @@ public:
}
};
static
inline
Pass
*
createUnify
Method
ExitNodesPass
()
{
return
new
Unify
Method
ExitNodes
();
static
inline
Pass
*
createUnify
Function
ExitNodesPass
()
{
return
new
Unify
Function
ExitNodes
();
}
#endif
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