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
0d48fcd1
Commit
0d48fcd1
authored
Mar 07, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop-unswitch.c (unswitch_loop): Remove local variable src.
From-SVN: r96026
parent
94eb5ddb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/loop-unswitch.c
+1
-2
No files found.
gcc/ChangeLog
View file @
0d48fcd1
...
...
@@ -38,6 +38,8 @@
* cfgrtl.c (rtl_verify_flow_info_1): Remove local variable
last_bb_seen.
* loop-unswitch.c (unswitch_loop): Remove local variable src.
2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com>
* config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv.
...
...
gcc/loop-unswitch.c
View file @
0d48fcd1
...
...
@@ -406,7 +406,7 @@ unswitch_loop (struct loops *loops, struct loop *loop, basic_block unswitch_on,
rtx
cond
,
rtx
cinsn
)
{
edge
entry
,
latch_edge
,
true_edge
,
false_edge
,
e
;
basic_block
switch_bb
,
unswitch_on_alt
,
src
;
basic_block
switch_bb
,
unswitch_on_alt
;
struct
loop
*
nloop
;
sbitmap
zero_bitmap
;
int
irred_flag
,
prob
;
...
...
@@ -429,7 +429,6 @@ unswitch_loop (struct loops *loops, struct loop *loop, basic_block unswitch_on,
entry
=
loop_preheader_edge
(
loop
);
/* Make a copy. */
src
=
entry
->
src
;
irred_flag
=
entry
->
flags
&
EDGE_IRREDUCIBLE_LOOP
;
entry
->
flags
&=
~
EDGE_IRREDUCIBLE_LOOP
;
zero_bitmap
=
sbitmap_alloc
(
2
);
...
...
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