From: Craig Topper Date: Wed, 14 Aug 2019 15:10:37 +0000 (+0000) Subject: [LangRef] Remove opening [ that was missing a closing ] from call/callbr/invoke syntax. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59533532f9e06588b0aa8623fd2c1bf25791524c;p=llvm [LangRef] Remove opening [ that was missing a closing ] from call/callbr/invoke syntax. It looks like this bracket was added when the addrspace was added. before it. So I think it can jut be removed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368861 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.rst b/docs/LangRef.rst index a169589117c..27df10c8b44 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -6950,7 +6950,7 @@ Syntax: :: - = invoke [cconv] [ret attrs] [addrspace()] [| () [fn attrs] + = invoke [cconv] [ret attrs] [addrspace()] | () [fn attrs] [operand bundles] to label unwind label Overview: @@ -7050,7 +7050,7 @@ Syntax: :: - = callbr [cconv] [ret attrs] [addrspace()] [| () [fn attrs] + = callbr [cconv] [ret attrs] [addrspace()] | () [fn attrs] [operand bundles] to label or jump [other labels] Overview: @@ -10155,7 +10155,7 @@ Syntax: :: = [tail | musttail | notail ] call [fast-math flags] [cconv] [ret attrs] [addrspace()] - [| () [fn attrs] [ operand bundles ] + | () [fn attrs] [ operand bundles ] Overview: """""""""