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
60a3d801
Commit
60a3d801
authored
Aug 23, 1996
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add fancy_abort
From-SVN: r12669
parent
ce59619c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
0 deletions
+30
-0
gcc/bi-arity.c
+10
-0
gcc/bi-opcode.c
+10
-0
gcc/bi-opname.c
+10
-0
No files found.
gcc/bi-arity.c
View file @
60a3d801
...
...
@@ -79,3 +79,13 @@ xmalloc (nbytes)
return
tmp
;
}
/* More 'friendly' abort that prints the line and file.
config.h can #define abort fancy_abort if you like that sort of thing. */
void
fancy_abort
()
{
fprintf
(
stderr
,
"Internal gcc abort.
\n
"
);
exit
(
FATAL_EXIT_CODE
);
}
gcc/bi-opcode.c
View file @
60a3d801
...
...
@@ -77,3 +77,13 @@ xmalloc (nbytes)
return
tmp
;
}
/* More 'friendly' abort that prints the line and file.
config.h can #define abort fancy_abort if you like that sort of thing. */
void
fancy_abort
()
{
fprintf
(
stderr
,
"Internal gcc abort.
\n
"
);
exit
(
FATAL_EXIT_CODE
);
}
gcc/bi-opname.c
View file @
60a3d801
...
...
@@ -58,3 +58,13 @@ xmalloc (nbytes)
return
tmp
;
}
/* More 'friendly' abort that prints the line and file.
config.h can #define abort fancy_abort if you like that sort of thing. */
void
fancy_abort
()
{
fprintf
(
stderr
,
"Internal gcc abort.
\n
"
);
exit
(
FATAL_EXIT_CODE
);
}
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