Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
98e0a59a
Commit
98e0a59a
authored
15 years ago
by
Eric Christopher
Browse files
Options
Downloads
Patches
Plain Diff
Correct __cxa_end_catch documentation to reflect that it doesn't take any arguments.
llvm-svn: 81307
parent
a1c6495a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/docs/ExceptionHandling.html
+9
-4
9 additions, 4 deletions
llvm/docs/ExceptionHandling.html
with
9 additions
and
4 deletions
llvm/docs/ExceptionHandling.html
+
9
−
4
View file @
98e0a59a
...
...
@@ -4,7 +4,7 @@
<head>
<title>
Exception Handling in LLVM
</title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<meta
name=
"description"
<meta
name=
"description"
content=
"Exception Handling in LLVM."
>
<link
rel=
"stylesheet"
href=
"llvm.css"
type=
"text/css"
>
</head>
...
...
@@ -56,7 +56,7 @@
<!-- *********************************************************************** -->
<div
class=
"doc_section"
><a
name=
"introduction"
>
Introduction
</a></div>
<div
class=
"doc_section"
><a
name=
"introduction"
>
Introduction
</a></div>
<!-- *********************************************************************** -->
<div
class=
"doc_text"
>
...
...
@@ -295,8 +295,13 @@
<li><tt>
__cxa_begin_catch
</tt>
takes a exception structure reference as an
argument and returns the value of the exception object.
</li>
<li><tt>
__cxa_end_catch
</tt>
takes a exception structure reference as an
argument. This function clears the exception from the exception space.
<li><tt>
__cxa_end_catch
</tt>
takes no arguments. This function
<ul>
Locates the most recently caught exception and decrements its handler
count.
</ul>
<ul>
Removes the exception from the "caught" stack if the handler count goes
to zero.
</ul>
<ul>
Destroys the exception if the handler count goes to zero, and the
exception was not re-thrown by throw.
</ul>
Note: a rethrow from within the catch may replace this call with
a
<tt>
__cxa_rethrow
</tt>
.
</li>
</ul>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment