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
99f80c8b
Commit
99f80c8b
authored
Mar 08, 2000
by
Nathan Sidwell
Committed by
Nathan Sidwell
Mar 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* exception.cc (__cp_pop_exception): Cleanup the original object.
From-SVN: r32426
parent
532f12a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/exception.cc
+2
-2
No files found.
gcc/cp/ChangeLog
View file @
99f80c8b
2000-03-08 Nathan Sidwell <nathan@codesourcery.com>
2000-03-08 Nathan Sidwell <nathan@codesourcery.com>
* exception.cc (__cp_pop_exception): Cleanup the original object.
2000-03-08 Nathan Sidwell <nathan@codesourcery.com>
* decl.c (grok_op_properties): Merge conversion to void warning
* decl.c (grok_op_properties): Merge conversion to void warning
with other silly op warnings.
with other silly op warnings.
...
...
gcc/cp/exception.cc
View file @
99f80c8b
...
@@ -252,10 +252,10 @@ __cp_pop_exception (cp_eh_info *p)
...
@@ -252,10 +252,10 @@ __cp_pop_exception (cp_eh_info *p)
if
(
p
->
cleanup
)
if
(
p
->
cleanup
)
/* 2 is a magic value for destructors; see build_delete(). */
/* 2 is a magic value for destructors; see build_delete(). */
p
->
cleanup
(
p
->
value
,
2
);
p
->
cleanup
(
p
->
original_value
,
2
);
// value may have been adjusted.
if
(
!
__is_pointer
(
p
->
type
))
if
(
!
__is_pointer
(
p
->
type
))
__eh_free
(
p
->
original_value
);
// value may have been
co-erc
ed.
__eh_free
(
p
->
original_value
);
// value may have been
adjust
ed.
__eh_free
(
p
);
__eh_free
(
p
);
}
}
...
...
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