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
cf879efa
Commit
cf879efa
authored
May 08, 1998
by
Michael Meissner
Committed by
Michael Meissner
May 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call fatal_insn instead of abort
From-SVN: r19635
parent
d7c2e385
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/final.c
+1
-1
No files found.
gcc/ChangeLog
View file @
cf879efa
Fri May 8 18:23:08 1998 Michael Meissner <meissner@cygnus.com>
* final.c (final_scan_insn): Call fatal_insn instead of abort if
we could not split an insn when required to.
Fri May 8 14:13:21 1998 H.J. Lu (hjl@gnu.org)
* reload1.c (emit_reload_insns): When performing expensive
...
...
gcc/final.c
View file @
cf879efa
...
...
@@ -2778,7 +2778,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
/* If we didn't split the insn, go away. */
if
(
new
==
insn
&&
PATTERN
(
new
)
==
body
)
abort
(
);
fatal_insn
(
"Could not split insn"
,
insn
);
#ifdef HAVE_ATTR_length
/* This instruction should have been split in shorten_branches,
...
...
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