mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
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
This commit is contained in:
parent
5a364c5561
commit
ef1b87a1ad
@ -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:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user