diff options
author | Craig Topper <craig.topper@intel.com> | 2019-08-14 15:10:37 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-08-14 15:10:37 +0000 |
commit | ffe91994a941ff549697639c5db3a5cafc2e8194 (patch) | |
tree | ee39b782d453f46cd2ccca6e24bc07b67623dc95 | |
parent | 49661f94c8d07b0db9190261c47138b99a47546b (diff) | |
download | bcm5719-llvm-ffe91994a941ff549697639c5db3a5cafc2e8194.tar.gz bcm5719-llvm-ffe91994a941ff549697639c5db3a5cafc2e8194.zip |
[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
-rw-r--r-- | llvm/docs/LangRef.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index a169589117c..27df10c8b44 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -6950,7 +6950,7 @@ Syntax: :: - <result> = invoke [cconv] [ret attrs] [addrspace(<num>)] [<ty>|<fnty> <fnptrval>(<function args>) [fn attrs] + <result> = invoke [cconv] [ret attrs] [addrspace(<num>)] <ty>|<fnty> <fnptrval>(<function args>) [fn attrs] [operand bundles] to label <normal label> unwind label <exception label> Overview: @@ -7050,7 +7050,7 @@ Syntax: :: - <result> = callbr [cconv] [ret attrs] [addrspace(<num>)] [<ty>|<fnty> <fnptrval>(<function args>) [fn attrs] + <result> = callbr [cconv] [ret attrs] [addrspace(<num>)] <ty>|<fnty> <fnptrval>(<function args>) [fn attrs] [operand bundles] to label <normal label> or jump [other labels] Overview: @@ -10155,7 +10155,7 @@ Syntax: :: <result> = [tail | musttail | notail ] call [fast-math flags] [cconv] [ret attrs] [addrspace(<num>)] - [<ty>|<fnty> <fnptrval>(<function args>) [fn attrs] [ operand bundles ] + <ty>|<fnty> <fnptrval>(<function args>) [fn attrs] [ operand bundles ] Overview: """"""""" |