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
139fa6f8
Commit
139fa6f8
authored
Oct 05, 1999
by
Michael Meissner
Committed by
Michael Meissner
Oct 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark args as unused.
From-SVN: r29830
parent
df231a09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
gcc/ChangeLog
+2
-1
gcc/libgcc2.c
+2
-1
No files found.
gcc/ChangeLog
View file @
139fa6f8
...
...
@@ -2,7 +2,8 @@ Tue Oct 5 15:37:04 1999 Michael Meissner <meissner@cygnus.com>
*
libgcc2
.
c
(
toplevel
)
:
If
inhibit_libc
is
defined
,
declare
malloc
,
free
,
and
atexit
.
Don
'
t
include
stddef
.
h
twice
.
(
__clear_cache
)
:
Mark
arguments
as
potentially
unused
.
*
frame
.
c
(
toplevel
)
:
If
inhibit_libc
is
defined
,
declare
malloc
and
free
.
...
...
gcc/libgcc2.c
View file @
139fa6f8
...
...
@@ -2470,7 +2470,8 @@ unsigned int __shtab[] = {
#define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH)
void
__clear_cache
(
char
*
beg
,
char
*
end
)
__clear_cache
(
char
*
beg
__attribute__
((
__unused__
)),
char
*
end
__attribute__
((
__unused__
)))
{
#ifdef CLEAR_INSN_CACHE
CLEAR_INSN_CACHE
(
beg
,
end
);
...
...
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