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
b53e8261
Commit
b53e8261
authored
15 years ago
by
Tobias Grosser
Browse files
Options
Downloads
Patches
Plain Diff
Remove trailing white spaces in post dominators header file
llvm-svn: 93195
parent
829e8a75
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/Analysis/PostDominators.h
+6
-6
6 additions, 6 deletions
llvm/include/llvm/Analysis/PostDominators.h
with
6 additions
and
6 deletions
llvm/include/llvm/Analysis/PostDominators.h
+
6
−
6
View file @
b53e8261
...
...
@@ -36,19 +36,19 @@ struct PostDominatorTree : public FunctionPass {
virtual
void
getAnalysisUsage
(
AnalysisUsage
&
AU
)
const
{
AU
.
setPreservesAll
();
}
inline
const
std
::
vector
<
BasicBlock
*>
&
getRoots
()
const
{
return
DT
->
getRoots
();
}
inline
DomTreeNode
*
getRootNode
()
const
{
return
DT
->
getRootNode
();
}
inline
DomTreeNode
*
operator
[](
BasicBlock
*
BB
)
const
{
return
DT
->
getNode
(
BB
);
}
inline
DomTreeNode
*
getNode
(
BasicBlock
*
BB
)
const
{
return
DT
->
getNode
(
BB
);
}
...
...
@@ -64,7 +64,7 @@ struct PostDominatorTree : public FunctionPass {
inline
bool
properlyDominates
(
const
DomTreeNode
*
A
,
DomTreeNode
*
B
)
const
{
return
DT
->
properlyDominates
(
A
,
B
);
}
inline
bool
properlyDominates
(
BasicBlock
*
A
,
BasicBlock
*
B
)
const
{
return
DT
->
properlyDominates
(
A
,
B
);
}
...
...
@@ -101,7 +101,7 @@ template <> struct GraphTraits<PostDominatorTree*>
///
struct
PostDominanceFrontier
:
public
DominanceFrontierBase
{
static
char
ID
;
PostDominanceFrontier
()
PostDominanceFrontier
()
:
DominanceFrontierBase
(
&
ID
,
true
)
{}
virtual
bool
runOnFunction
(
Function
&
)
{
...
...
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