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
1547114c
"README.md" did not exist on "f4ea1d5f793243fdc92514964968c7d8e3eed6e7"
Commit
1547114c
authored
23 years ago
by
Chris Lattner
Browse files
Options
Downloads
Patches
Plain Diff
Fixed post dominator frontiers! Yaay!
llvm-svn: 157
parent
a682182f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
llvm/lib/Analysis/PostDominators.cpp
+1
-1
1 addition, 1 deletion
llvm/lib/Analysis/PostDominators.cpp
llvm/lib/VMCore/Dominators.cpp
+1
-1
1 addition, 1 deletion
llvm/lib/VMCore/Dominators.cpp
with
2 additions
and
2 deletions
llvm/lib/Analysis/PostDominators.cpp
+
1
−
1
View file @
1547114c
...
@@ -358,7 +358,7 @@ cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
...
@@ -358,7 +358,7 @@ cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
for
(
DominatorTree
::
Node
::
const_iterator
NI
=
Node
->
begin
(),
NE
=
Node
->
end
();
for
(
DominatorTree
::
Node
::
const_iterator
NI
=
Node
->
begin
(),
NE
=
Node
->
end
();
NI
!=
NE
;
++
NI
)
{
NI
!=
NE
;
++
NI
)
{
DominatorTree
::
Node
*
IDominee
=
*
NI
;
DominatorTree
::
Node
*
IDominee
=
*
NI
;
const
DomSetType
&
ChildDF
=
calcDomFrontier
(
DT
,
IDominee
);
const
DomSetType
&
ChildDF
=
calc
Post
DomFrontier
(
DT
,
IDominee
);
DomSetType
::
const_iterator
CDFI
=
ChildDF
.
begin
(),
CDFE
=
ChildDF
.
end
();
DomSetType
::
const_iterator
CDFI
=
ChildDF
.
begin
(),
CDFE
=
ChildDF
.
end
();
for
(;
CDFI
!=
CDFE
;
++
CDFI
)
{
for
(;
CDFI
!=
CDFE
;
++
CDFI
)
{
...
...
This diff is collapsed.
Click to expand it.
llvm/lib/VMCore/Dominators.cpp
+
1
−
1
View file @
1547114c
...
@@ -358,7 +358,7 @@ cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
...
@@ -358,7 +358,7 @@ cfg::DominanceFrontier::calcPostDomFrontier(const DominatorTree &DT,
for
(
DominatorTree
::
Node
::
const_iterator
NI
=
Node
->
begin
(),
NE
=
Node
->
end
();
for
(
DominatorTree
::
Node
::
const_iterator
NI
=
Node
->
begin
(),
NE
=
Node
->
end
();
NI
!=
NE
;
++
NI
)
{
NI
!=
NE
;
++
NI
)
{
DominatorTree
::
Node
*
IDominee
=
*
NI
;
DominatorTree
::
Node
*
IDominee
=
*
NI
;
const
DomSetType
&
ChildDF
=
calcDomFrontier
(
DT
,
IDominee
);
const
DomSetType
&
ChildDF
=
calc
Post
DomFrontier
(
DT
,
IDominee
);
DomSetType
::
const_iterator
CDFI
=
ChildDF
.
begin
(),
CDFE
=
ChildDF
.
end
();
DomSetType
::
const_iterator
CDFI
=
ChildDF
.
begin
(),
CDFE
=
ChildDF
.
end
();
for
(;
CDFI
!=
CDFE
;
++
CDFI
)
{
for
(;
CDFI
!=
CDFE
;
++
CDFI
)
{
...
...
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