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
470d9044
Commit
470d9044
authored
Sep 07, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgcleanup.c (try_simplify_condjump): Fix my previous patch.
From-SVN: r71153
parent
0b22120b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+2
-0
gcc/cfgcleanup.c
+7
-1
No files found.
gcc/ChangeLog
View file @
470d9044
Sun Sep 7 00:22:22 CEST 2003 Jan Hubicka <jh@suse.cz>
* cfgcleanup.c (try_simplify_condjump): Fix my previous patch.
* toplev.c (rest_of_decl_compilation): Do not finalize external
virables.
...
...
gcc/cfgcleanup.c
View file @
470d9044
...
...
@@ -182,7 +182,13 @@ try_simplify_condjump (basic_block cbranch_block)
next
=
NEXT_INSN
(
insn
);
if
(
GET_CODE
(
insn
)
==
NOTE
&&
NOTE_LINE_NUMBER
(
insn
)
>
0
)
{
reorder_insns
(
insn
,
insn
,
end
);
if
(
insn
==
end
)
{
jump_block
->
end
=
PREV_INSN
(
insn
);
if
(
jump_block
->
end
==
end
)
break
;
}
reorder_insns_nobb
(
insn
,
insn
,
end
);
end
=
insn
;
}
}
...
...
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