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
48a259fc
Commit
48a259fc
authored
May 11, 2000
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixinc/fixincl.c (run_compiles): Don't crash on null pz_machine.
From-SVN: r33860
parent
32a4595e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+6
-2
gcc/fixinc/fixincl.c
+1
-1
No files found.
gcc/ChangeLog
View file @
48a259fc
2000
-
05
-
11
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
*
fixinc
/
fixincl
.
c
(
run_compiles
)
:
Don
'
t
crash
on
null
pz_machine
.
2000
-
05
-
11
Zack
Weinberg
<
zack
@wolery
.
cumb
.
org
>
2000
-
05
-
11
Zack
Weinberg
<
zack
@wolery
.
cumb
.
org
>
*
fixinc
/
fixfixes
.
c
,
fixinc
/
fixtests
.
c
:
Update
commentary
.
*
fixinc
/
fixfixes
.
c
,
fixinc
/
fixtests
.
c
:
Update
commentary
.
...
@@ -27,7 +31,7 @@ Thu May 11 22:28:05 2000 Denis Chertykov <denisc@overta.ru>
...
@@ -27,7 +31,7 @@ Thu May 11 22:28:05 2000 Denis Chertykov <denisc@overta.ru>
2000
-
05
-
11
Bruce
Korb
<
bkorb
@gnu
.
org
>
2000
-
05
-
11
Bruce
Korb
<
bkorb
@gnu
.
org
>
*
fixinc
/
fixfixes
.
c
(
double_slash_fix
)
:
obsolete
*
fixinc
/
fixfixes
.
c
(
double_slash_fix
)
:
obsolete
(
else_endif_label_fix
)
:
obsolete
(
else_endif_label_fix
)
:
obsolete
(
format_fix
)
:
new
,
unused
as
yet
(
format_fix
)
:
new
,
unused
as
yet
(
main
)
:
obsolete
(
main
)
:
obsolete
...
@@ -38,7 +42,7 @@ Thu May 11 22:28:05 2000 Denis Chertykov <denisc@overta.ru>
...
@@ -38,7 +42,7 @@ Thu May 11 22:28:05 2000 Denis Chertykov <denisc@overta.ru>
Added
support
for
"make check"
.
Added
support
for
"make check"
.
*
fixinc
/
check
.
diff
:
base
diff
file
(
needs
work
!!
)
*
fixinc
/
check
.
diff
:
base
diff
file
(
needs
work
!!
)
*
fixinc
/
check
.
tpl
:
quiet
the
fixup
output
*
fixinc
/
check
.
tpl
:
quiet
the
fixup
output
*
fixinc
/
fixtests
.
c
(
main
)
:
obsolete
*
fixinc
/
fixtests
.
c
(
main
)
:
obsolete
*
fixinc
/
fixincl
.
sh
:
don
'
t
bother
copying
fixincl
to
..
*
fixinc
/
fixincl
.
sh
:
don
'
t
bother
copying
fixincl
to
..
*
fixinc
/
fixincl
.
tpl
:
provide
for
arguments
to
c_fix
routines
*
fixinc
/
fixincl
.
tpl
:
provide
for
arguments
to
c_fix
routines
...
...
gcc/fixinc/fixincl.c
View file @
48a259fc
...
@@ -405,7 +405,7 @@ run_compiles ()
...
@@ -405,7 +405,7 @@ run_compiles ()
/* Allow machine name tests to be ignored (testing, mainly) */
/* Allow machine name tests to be ignored (testing, mainly) */
if
(
(
*
pz_machine
==
'\0'
)
||
(
*
pz_machine
==
'*'
))
if
(
pz_machine
&&
((
*
pz_machine
==
'\0'
)
||
(
*
pz_machine
==
'*'
)
))
pz_machine
=
(
char
*
)
NULL
;
pz_machine
=
(
char
*
)
NULL
;
/* FOR every fixup, ... */
/* FOR every fixup, ... */
...
...
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