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
1f0fcca5
Commit
1f0fcca5
authored
Apr 13, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_usage, open_files): Use FATAL_EXIT_CODE.
From-SVN: r13884
parent
920b13cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/gcov.c
+4
-4
No files found.
gcc/gcov.c
View file @
1f0fcca5
...
...
@@ -273,7 +273,7 @@ static void
print_usage
()
{
fprintf
(
stderr
,
"gcov [-b] [-v] [-n] [-l] [-f] [-o OBJDIR] file
\n
"
);
exit
(
1
);
exit
(
FATAL_EXIT_CODE
);
}
/* Parse the command line. */
...
...
@@ -391,7 +391,7 @@ open_files ()
if
(
bb_file
==
NULL
)
{
fprintf
(
stderr
,
"Could not open basic block file %s.
\n
"
,
bb_file_name
);
exit
(
1
);
exit
(
FATAL_EXIT_CODE
);
}
/* If none of the functions in the file were executed, then there won't
...
...
@@ -408,7 +408,7 @@ open_files ()
{
fprintf
(
stderr
,
"Could not open program flow graph file %s.
\n
"
,
bbg_file_name
);
exit
(
1
);
exit
(
FATAL_EXIT_CODE
);
}
/* Check for empty .bbg file. This indicates that there is no executable
...
...
@@ -419,7 +419,7 @@ open_files ()
{
fprintf
(
stderr
,
"No executable code associated with file %s.
\n
"
,
input_file_name
);
exit
(
2
);
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