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
e041d3e9
Commit
e041d3e9
authored
Apr 24, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fatal, error): Make first arg const to avoid warning.
From-SVN: r9436
parent
a3fd7507
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/mips-tfile.c
+5
-5
No files found.
gcc/mips-tfile.c
View file @
e041d3e9
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
contain debugging information specified by the GNU compiler
contain debugging information specified by the GNU compiler
in the form of comments (the mips assembler does not support
in the form of comments (the mips assembler does not support
assembly access to debug information).
assembly access to debug information).
Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.
Copyright (C) 1991, 1993, 1994
. 1995
Free Software Foundation, Inc.
Contributed by Michael Meissner, meissner@osf.org
Contributed by Michael Meissner, meissner@osf.org
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -671,8 +671,8 @@ extern PTR_T xrealloc __proto((PTR_T, Size_t));
...
@@ -671,8 +671,8 @@ extern PTR_T xrealloc __proto((PTR_T, Size_t));
extern
void
xfree
__proto
((
PTR_T
));
extern
void
xfree
__proto
((
PTR_T
));
#ifdef HAVE_VPRINTF
#ifdef HAVE_VPRINTF
extern
void
fatal
PVPROTO
((
char
*
format
,
...));
extern
void
fatal
PVPROTO
((
c
onst
c
har
*
format
,
...));
extern
void
error
PVPROTO
((
char
*
format
,
...));
extern
void
error
PVPROTO
((
c
onst
c
har
*
format
,
...));
#else
#else
/* We must not provide any prototype here, even if ANSI C. */
/* We must not provide any prototype here, even if ANSI C. */
extern
void
fatal
__proto
(());
extern
void
fatal
__proto
(());
...
@@ -5606,7 +5606,7 @@ free_thead (ptr)
...
@@ -5606,7 +5606,7 @@ free_thead (ptr)
/*VARARGS*/
/*VARARGS*/
void
void
fatal
VPROTO
((
char
*
format
,
...))
fatal
VPROTO
((
c
onst
c
har
*
format
,
...))
{
{
#ifndef __STDC__
#ifndef __STDC__
char
*
format
;
char
*
format
;
...
@@ -5636,7 +5636,7 @@ fatal VPROTO((char *format, ...))
...
@@ -5636,7 +5636,7 @@ fatal VPROTO((char *format, ...))
/*VARARGS*/
/*VARARGS*/
void
void
error
VPROTO
((
char
*
format
,
...))
error
VPROTO
((
c
onst
c
har
*
format
,
...))
{
{
#ifndef __STDC__
#ifndef __STDC__
char
*
format
;
char
*
format
;
...
...
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