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
115ee359
Commit
115ee359
authored
Aug 15, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Don't dump core if given -pcp, -MD, or -MMD without following
arg. From-SVN: r7932
parent
d947ba59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
gcc/cccp.c
+6
-1
No files found.
gcc/cccp.c
View file @
115ee359
...
...
@@ -1337,7 +1337,10 @@ main (argc, argv)
pedantic
=
1
;
pedantic_errors
=
1
;
}
else
if
(
!
strcmp
(
argv
[
i
],
"-pcp"
))
{
char
*
pcp_fname
=
argv
[
++
i
];
char
*
pcp_fname
;
if
(
i
+
1
==
argc
)
fatal
(
"Filename missing after -pcp option"
);
pcp_fname
=
argv
[
++
i
];
pcp_outfile
=
((
pcp_fname
[
0
]
!=
'-'
||
pcp_fname
[
1
]
!=
'\0'
)
?
fopen
(
pcp_fname
,
"w"
)
...
...
@@ -1444,6 +1447,8 @@ main (argc, argv)
/* For -MD and -MMD options, write deps on file named by next arg. */
if
(
!
strcmp
(
argv
[
i
],
"-MD"
)
||
!
strcmp
(
argv
[
i
],
"-MMD"
))
{
if
(
i
+
1
==
argc
)
fatal
(
"Filename missing after %s option"
,
argv
[
i
]);
i
++
;
deps_file
=
argv
[
i
];
deps_mode
=
"w"
;
...
...
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