From cce6e816318880e77a39a68fbcc4f3a887eec13f Mon Sep 17 00:00:00 2001 From: Elena Demikhovsky Date: Mon, 29 Dec 2014 09:47:51 +0000 Subject: [PATCH] Fixed 2 minor typos in the documentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224917 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index 85dec6ac5cf..d059fe0d4dd 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -9274,7 +9274,7 @@ The result of this operation is equivalent to a regular vector load instruction ;; 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 equivalent to a load-modify-store sequence. Howe 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