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
14e7eabd
Commit
14e7eabd
authored
Jul 10, 2000
by
Nick Clifton
Committed by
Nick Clifton
Jul 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile time warning message
From-SVN: r34947
parent
46d3a873
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+5
-0
gcc/libgcc2.c
+2
-2
No files found.
gcc/ChangeLog
View file @
14e7eabd
2000-07-10 Nick Clifton <nickc@cygnus.com>
* libgcc2.c (next_stack_level): Cast result of computation to
(void **) so that the assignment doe snot generate a warning.
2000-07-10 Chandrakala Chavva <cchavva@redhat.com>
* flags.h : Add new variable flag_single_precision_constant.
...
...
gcc/libgcc2.c
View file @
14e7eabd
...
...
@@ -3712,8 +3712,8 @@ next_stack_level (void *pc, frame_state *udata, frame_state *caller_udata)
else
caller_udata
->
cfa
=
udata
->
cfa
;
if
(
caller_udata
->
indirect
)
caller_udata
->
cfa
=
*
(
word_type
*
)
((
unsigned
char
*
)
caller_udata
->
cfa
+
caller_udata
->
base_offset
);
caller_udata
->
cfa
=
*
(
void
**
)
((
unsigned
char
*
)
caller_udata
->
cfa
+
caller_udata
->
base_offset
);
caller_udata
->
cfa
+=
caller_udata
->
cfa_offset
;
return
caller_udata
;
...
...
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