Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit cce6e81

Browse files
author
Elena Demikhovsky
committed
Fixed 2 minor typos in the documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224917 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ff95215 commit cce6e81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/LangRef.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9274,7 +9274,7 @@ The result of this operation is equivalent to a regular vector load instruction
92749274
92759275
;; The result of the two following instructions is identical aside from potential memory access exception
92769276
%loadlal = load <16 x float>* %ptr, align 4
9277-
%res = select <16 x i1> %Mask, <16 x float> %loadlal, <16 x float> %passthru
9277+
%res = select <16 x i1> %mask, <16 x float> %loadlal, <16 x float> %passthru
92789278

92799279
.. _int_mstore:
92809280

@@ -9311,7 +9311,7 @@ The result of this operation is equivalent to a load-modify-store sequence. Howe
93119311

93129312
call void @llvm.masked.store.v16f32(<16 x float> %value, <16 x float>* %ptr, i32 4, <16 x i1> %mask)
93139313
9314-
;; The result of the following instructions is identcal aside from potential data races and memory access exceptions
9314+
;; The result of the following instructions is identical aside from potential data races and memory access exceptions
93159315
%oldval = load <16 x float>* %ptr, align 4
93169316
%res = select <16 x i1> %mask, <16 x float> %value, <16 x float> %oldval
93179317
store <16 x float> %res, <16 x float>* %ptr, align 4

0 commit comments

Comments
 (0)