Fix typos.
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Fri, 15 Nov 2013 22:43:50 +0000 (22:43 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Fri, 15 Nov 2013 22:43:50 +0000 (22:43 +0000)
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

docs/LangRef.rst

index e102cb6778788ea553cc8a349ae55fd38fd93076..f7914f864fb88080a743298cdd469ebae6e61a0c 100644 (file)
@@ -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: