[llvm] r224917 - Fixed 2 minor typos in the documentation.
Elena Demikhovsky
elena.demikhovsky at intel.com
Mon Dec 29 01:47:52 PST 2014
Author: delena
Date: Mon Dec 29 03:47:51 2014
New Revision: 224917
URL: http://llvm.org/viewvc/llvm-project?rev=224917&view=rev
Log:
Fixed 2 minor typos in the documentation.
Modified:
llvm/trunk/docs/LangRef.rst
Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=224917&r1=224916&r2=224917&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Mon Dec 29 03:47:51 2014
@@ -9274,7 +9274,7 @@ The result of this operation is equivale
;; The result of the two following instructions is identical aside from potential memory access exception
%loadlal = load <16 x float>* %ptr, align 4
- %res = select <16 x i1> %Mask, <16 x float> %loadlal, <16 x float> %passthru
+ %res = select <16 x i1> %mask, <16 x float> %loadlal, <16 x float> %passthru
.. _int_mstore:
@@ -9311,7 +9311,7 @@ The result of this operation is equivale
call void @llvm.masked.store.v16f32(<16 x float> %value, <16 x float>* %ptr, i32 4, <16 x i1> %mask)
- ;; The result of the following instructions is identcal aside from potential data races and memory access exceptions
+ ;; The result of the following instructions is identical aside from potential data races and memory access exceptions
%oldval = load <16 x float>* %ptr, align 4
%res = select <16 x i1> %mask, <16 x float> %value, <16 x float> %oldval
store <16 x float> %res, <16 x float>* %ptr, align 4
More information about the llvm-commits
mailing list