From: Matt Arsenault Date: Fri, 15 Nov 2013 22:43:50 +0000 (+0000) Subject: Fix typos. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ef1b87a1adab4e1c0e47377668513d4d1a2e4946;p=oota-llvm.git Fix typos. I somehow didn't notice before that the examples for addrspacecast use the wrong syntax for addrspace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194868 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.rst b/docs/LangRef.rst index e102cb67787..f7914f864fb 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -5785,9 +5785,9 @@ Example: .. code-block:: llvm - %X = addrspacecast i32* %x to addrspace(1) i32* ; yields addrspace(1) i32*:%x - %Y = addrspacecast addrspace(1) <2 x i32>* %y to addrspace(2) i64* ; yields addrspace(2) i32*:%y - %Z = addrspacecast <4 x i32*> %z to <4 x float addrspace(3)*> ; yelds <4 x float addrspace(3)*>:%z + %X = addrspacecast i32* %x to i32 addrspace(1)* ; yields i32 addrspace(1)*:%x + %Y = addrspacecast i32 addrspace(1)* %y to i64 addrspace(2)* ; yields i64 addrspace(2)*:%y + %Z = addrspacecast <4 x i32*> %z to <4 x float addrspace(3)*> ; yields <4 x float addrspace(3)*>:%z .. _otherops: