From 0f2208f619724300f790b0cbbf14388dbe5ed41f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 8 Aug 2011 08:06:05 +0000 Subject: [PATCH] Clean up the grammar for the landingpad instruction. llvm-svn: 137042 --- docs/LangRef.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 32fcba23529..71212cc7181 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -5992,9 +5992,11 @@ freestanding environments and non-C-based languages.

Syntax:
-  <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>}*
 
Overview: