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
e28a09a4
Commit
e28a09a4
authored
Feb 18, 2001
by
Richard Kenner
Committed by
Richard Kenner
Feb 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* diagnostic.c (_fatal_insn): Decrement errorcount.
From-SVN: r39834
parent
d0a5eb32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+2
-0
gcc/diagnostic.c
+5
-0
No files found.
gcc/ChangeLog
View file @
e28a09a4
Sun Feb 18 09:30:09 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
Sun Feb 18 09:30:09 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* diagnostic.c (_fatal_insn): Decrement errorcount.
* invoke.texi (-I): Add note avoiding use for system header files.
* invoke.texi (-I): Add note avoiding use for system header files.
* rtl.h (add_clobbers): Remove duplicate declaration.
* rtl.h (add_clobbers): Remove duplicate declaration.
...
...
gcc/diagnostic.c
View file @
e28a09a4
...
@@ -1486,6 +1486,11 @@ _fatal_insn (msgid, insn, file, line, function)
...
@@ -1486,6 +1486,11 @@ _fatal_insn (msgid, insn, file, line, function)
const
char
*
function
;
const
char
*
function
;
{
{
error
(
"%s"
,
msgid
);
error
(
"%s"
,
msgid
);
/* The above incremented error_count, but isn't an error that we want to
count, so reset it here. */
errorcount
--
;
debug_rtx
(
insn
);
debug_rtx
(
insn
);
fancy_abort
(
file
,
line
,
function
);
fancy_abort
(
file
,
line
,
function
);
}
}
...
...
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