[llvm-commits] [llvm] r137042 - /llvm/trunk/docs/LangRef.html

Bill Wendling isanbard at gmail.com
Mon Aug 8 01:06:05 PDT 2011


Author: void
Date: Mon Aug  8 03:06:05 2011
New Revision: 137042

URL: http://llvm.org/viewvc/llvm-project?rev=137042&view=rev
Log:
Clean up the grammar for the landingpad instruction.

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=137042&r1=137041&r2=137042&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Aug  8 03:06:05 2011
@@ -5992,9 +5992,11 @@
 
 <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>





More information about the llvm-commits mailing list