diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-08 08:06:05 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-08 08:06:05 +0000 |
commit | 49bfb12c4608f5d6afa3ed83334a5cb8e1d7783c (patch) | |
tree | 0c3747095224a8a898d8ef7aeed68c2a7de0510b /llvm | |
parent | e632cb360091ba220ef5fd4e0f526f85e0266e4c (diff) | |
download | bcm5719-llvm-49bfb12c4608f5d6afa3ed83334a5cb8e1d7783c.tar.gz bcm5719-llvm-49bfb12c4608f5d6afa3ed83334a5cb8e1d7783c.zip |
Clean up the grammar for the landingpad instruction.
llvm-svn: 137042
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 32fcba23529..71212cc7181 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -5992,9 +5992,11 @@ freestanding environments and non-C-based languages.</p> <h5>Syntax:</h5> <pre> - <resultval> = landingpad <somety> personality <type> <pers_fn> cleanup? <clause>+ + <resultval> = landingpad <somety> personality <type> <pers_fn> <clause>+ + <resultval> = landingpad <somety> personality <type> <pers_fn> cleanup <clause>* + <clause> := catch <type> <value> - <clause> := filter <type> <value> + <clause> := filter <type> <value> {, <type> <value>}* </pre> <h5>Overview:</h5> |