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
74f80620
Commit
74f80620
authored
Oct 10, 2012
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Oct 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* elf.c (elf_add_syminfo_data): Add casts to avoid warning.
From-SVN: r192311
parent
b85aed95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
libbacktrace/ChangeLog
+4
-0
libbacktrace/elf.c
+2
-2
No files found.
libbacktrace/ChangeLog
View file @
74f80620
2012-10-10 Hans-Peter Nilsson <hp@bitrange.com>
* elf.c (elf_add_syminfo_data): Add casts to avoid warning.
2012-10-09 Ian Lance Taylor <iant@google.com>
* dwarf.c (dwarf_fileline): Add cast to avoid warning.
...
...
libbacktrace/elf.c
View file @
74f80620
...
...
@@ -410,7 +410,7 @@ elf_add_syminfo_data (struct backtrace_state *state,
{
struct
elf_syminfo_data
**
pp
;
for
(
pp
=
(
struct
elf_syminfo_data
**
)
&
state
->
syminfo_data
;
for
(
pp
=
(
struct
elf_syminfo_data
**
)
(
void
*
)
&
state
->
syminfo_data
;
*
pp
!=
NULL
;
pp
=
&
(
*
pp
)
->
next
)
;
...
...
@@ -422,7 +422,7 @@ elf_add_syminfo_data (struct backtrace_state *state,
{
struct
elf_syminfo_data
**
pp
;
pp
=
(
struct
elf_syminfo_data
**
)
&
state
->
syminfo_data
;
pp
=
(
struct
elf_syminfo_data
**
)
(
void
*
)
&
state
->
syminfo_data
;
while
(
1
)
{
...
...
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