1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Update the syntax for load instruction in this example.

llvm-svn: 244554
This commit is contained in:
Nick Lewycky 2015-08-11 01:05:16 +00:00
parent 1bb9d68857
commit 7b71f2a1ab

View File

@ -6804,7 +6804,7 @@ Example:
%ptr = alloca i32 ; yields i32*:ptr
store i32 3, i32* %ptr ; yields void
%val = load i32* %ptr ; yields i32:val = i32 3
%val = load i32, i32* %ptr ; yields i32:val = i32 3
.. _i_fence: