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
9dc5c4f5
Commit
9dc5c4f5
authored
Jan 25, 2007
by
Geoffrey Keating
Committed by
Geoffrey Keating
Jan 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unwind-dw2.c (execute_stack_op): Handle DW_OP_swap.
From-SVN: r121165
parent
01ffa370
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ChangeLog
+4
-0
gcc/unwind-dw2.c
+10
-0
No files found.
gcc/ChangeLog
View file @
9dc5c4f5
2007-01-24 Geoffrey Keating <geoffk@apple.com>
* unwind-dw2.c (execute_stack_op): Handle DW_OP_swap.
2007-01-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR middle-end/30447
...
...
gcc/unwind-dw2.c
View file @
9dc5c4f5
...
...
@@ -636,6 +636,16 @@ execute_stack_op (const unsigned char *op_ptr, const unsigned char *op_end,
result
=
stack
[
stack_elt
-
2
];
break
;
case
DW_OP_swap
:
{
_Unwind_Word
t
;
gcc_assert
(
stack_elt
>=
2
);
t
=
stack
[
stack_elt
-
1
];
stack
[
stack_elt
-
1
]
=
stack
[
stack_elt
-
2
];
stack
[
stack_elt
-
2
]
=
t
;
goto
no_push
;
}
case
DW_OP_rot
:
{
_Unwind_Word
t1
,
t2
,
t3
;
...
...
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