diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-03 17:17:06 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-03 17:17:06 +0000 |
commit | b7a01353ea281fc509ff95dc18949e59a696e48c (patch) | |
tree | db3b98dd2c4ed17caa132595280f16350a8b72ae /docs | |
parent | 56e3232d5a5206f8b554eccd4aea2e75e59d4314 (diff) |
Explain how clauses are applied.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136790 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 1c3cc89724..aab4d35c6b 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -6025,6 +6025,10 @@ freestanding environments and non-C-based languages.</p> calling conventions, how the personality function results are represented in LLVM IR is target specific.</p> +<p>The clauses are applied in order from top to bottom. If two + <tt>landingpad</tt> instructions are merged together through inlining, the + clauses from the calling function are prepended to the list of clauses.</p> + <p>The <tt>landingpad</tt> instruction has several restrictions:</p> <ul> |