Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
4f9c574a
Commit
4f9c574a
authored
Dec 14, 2011
by
Dmitry Vyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert the previous "Fix flags for edges from/to entry/exit basic blocks"
patch that caused regressions. From-SVN: r182326
parent
56f05abd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
gcc/ChangeLog
+0
-4
gcc/cgraphunit.c
+2
-2
No files found.
gcc/ChangeLog
View file @
4f9c574a
...
@@ -172,10 +172,6 @@
...
@@ -172,10 +172,6 @@
*
tree
-
sra
.
c
(
build_ref_for_model
):
Replicate
a
chain
of
COMPONENT_REFs
*
tree
-
sra
.
c
(
build_ref_for_model
):
Replicate
a
chain
of
COMPONENT_REFs
in
the
expression
of
MODEL
instead
of
just
the
last
one
.
in
the
expression
of
MODEL
instead
of
just
the
last
one
.
2011
-
12
-
12
Dmitry
Vyukov
<
dvyukov
@
google
.
com
>
*
cgraphunit
.
c
(
init_lowered_empty_function
):
Fix
flags
for
new
edges
.
2011
-
12
-
12
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
2011
-
12
-
12
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
PR
middle
-
end
/
51510
PR
middle
-
end
/
51510
gcc/cgraphunit.c
View file @
4f9c574a
...
@@ -1459,8 +1459,8 @@ init_lowered_empty_function (tree decl)
...
@@ -1459,8 +1459,8 @@ init_lowered_empty_function (tree decl)
/* Create BB for body of the function and connect it properly. */
/* Create BB for body of the function and connect it properly. */
bb
=
create_basic_block
(
NULL
,
(
void
*
)
0
,
ENTRY_BLOCK_PTR
);
bb
=
create_basic_block
(
NULL
,
(
void
*
)
0
,
ENTRY_BLOCK_PTR
);
make_edge
(
ENTRY_BLOCK_PTR
,
bb
,
EDGE_FALLTHRU
);
make_edge
(
ENTRY_BLOCK_PTR
,
bb
,
0
);
make_edge
(
bb
,
EXIT_BLOCK_PTR
,
EDGE_FALLTHRU
);
make_edge
(
bb
,
EXIT_BLOCK_PTR
,
0
);
return
bb
;
return
bb
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment