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
c1942361
Commit
c1942361
authored
Sep 02, 2009
by
Richard Henderson
Committed by
Richard Henderson
Sep 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tb-gcc.c (__gnat_backtrace): Mark all arguments unused.
From-SVN: r151355
parent
02c8b4f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ada/ChangeLog
+4
-0
gcc/ada/tb-gcc.c
+5
-3
No files found.
gcc/ada/ChangeLog
View file @
c1942361
2009
-
09
-
02
Richard
Henderson
<
rth
@
redhat
.
com
>
*
tb
-
gcc
.
c
(
__gnat_backtrace
):
Mark
all
arguments
unused
.
2009
-
09
-
02
Olivier
Hainque
<
hainque
@
adacore
.
com
>
2009
-
09
-
02
Olivier
Hainque
<
hainque
@
adacore
.
com
>
*
init
.
c
(
__gnat_error_handler
,
AIX
):
Add
ATTRIBUTE_UNUSED
on
si
*
init
.
c
(
__gnat_error_handler
,
AIX
):
Add
ATTRIBUTE_UNUSED
on
si
...
...
gcc/ada/tb-gcc.c
View file @
c1942361
...
@@ -94,9 +94,11 @@ trace_callback (struct _Unwind_Context * uw_context, uw_data_t * uw_data)
...
@@ -94,9 +94,11 @@ trace_callback (struct _Unwind_Context * uw_context, uw_data_t * uw_data)
********************/
********************/
int
int
__gnat_backtrace
(
void
**
traceback
,
int
max_len
,
__gnat_backtrace
(
void
**
traceback
__attribute__
((
unused
)),
void
*
exclude_min
,
void
*
exclude_max
,
int
max_len
__attribute__
((
unused
)),
int
skip_frames
)
void
*
exclude_min
__attribute__
((
unused
)),
void
*
exclude_max
__attribute__
((
unused
)),
int
skip_frames
__attribute__
((
unused
)))
{
{
#if defined (__USING_SJLJ_EXCEPTIONS__)
#if defined (__USING_SJLJ_EXCEPTIONS__)
/* We have no unwind material (tables) at hand with sjlj eh, and no
/* We have no unwind material (tables) at hand with sjlj eh, and no
...
...
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