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
48b710dd
Commit
48b710dd
authored
May 30, 2000
by
Richard Henderson
Committed by
Richard Henderson
May 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
From-SVN: r34274
parent
7ae2112b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/bb-reorder.c
+4
-0
No files found.
gcc/ChangeLog
View file @
48b710dd
2000-05-30 Richard Henderson <rth@cygnus.com>
* bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
2000-05-30 Bruce Korb <bkorb@gnu.org>
* fixinc/tests/*: Added expected result files for fixinc's make check
...
...
gcc/bb-reorder.c
View file @
48b710dd
...
...
@@ -501,12 +501,16 @@ emit_jump_to_block_after (bb, after)
}
else
{
#ifdef HAVE_return
if
(
!
HAVE_return
)
abort
();
jump
=
emit_jump_insn_after
(
gen_return
(),
after
);
if
(
rtl_dump_file
)
fprintf
(
rtl_dump_file
,
"Emitting return
\n
"
);
#else
abort
();
#endif
}
return
jump
;
...
...
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