From ffe91994a941ff549697639c5db3a5cafc2e8194 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Wed, 14 Aug 2019 15:10:37 +0000 Subject: [PATCH] [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. llvm-svn: 368861 --- llvm/docs/LangRef.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index a169589..27df10c 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/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: """"""""" -- 2.7.4