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
87e690e2
Commit
87e690e2
authored
Feb 09, 1999
by
Mumit Khan
Committed by
Jeff Law
Feb 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (convert_filename): Handle null filename argument.
From-SVN: r25115
parent
09ed0f70
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/gcc.c
+6
-1
No files found.
gcc/ChangeLog
View file @
87e690e2
Tue
Feb
9
16
:
52
:
22
1999
Mumit
Khan
<
khan
@xraylith
.
wisc
.
edu
>
*
gcc
.
c
(
convert_filename
)
:
Handle
null
filename
argument
.
Wed
Feb
10
15
:
46
:
10
1999
Michael
Hayes
<
m
.
hayes
@elec
.
canterbury
.
ac
.
nz
>
*
config
/
c4x
/
c4x
.
md
(
*
movhf_noclobber
,
*
movhi_noclobber
)
:
Use
...
...
gcc/gcc.c
View file @
87e690e2
...
...
@@ -2393,7 +2393,12 @@ convert_filename (name, do_exe)
int
do_exe
;
{
int
i
;
int
len
=
strlen
(
name
);
int
len
;
if
(
name
==
NULL
)
return
NULL
;
len
=
strlen
(
name
);
#ifdef HAVE_OBJECT_SUFFIX
/* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
...
...
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