[llvm] r354614 - [llvm] Fix typo: 's/ ot / to /' [NFC]
Mandeep Singh Grang via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 21 12:04:20 PST 2019
Author: mgrang
Date: Thu Feb 21 12:04:20 2019
New Revision: 354614
URL: http://llvm.org/viewvc/llvm-project?rev=354614&view=rev
Log:
[llvm] Fix typo: 's/ ot / to /' [NFC]
Modified:
llvm/trunk/lib/IR/Verifier.cpp
llvm/trunk/test/CodeGen/AMDGPU/sgpr-copy.ll
llvm/trunk/test/Verifier/frameescape.ll
Modified: llvm/trunk/lib/IR/Verifier.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Verifier.cpp?rev=354614&r1=354613&r2=354614&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Verifier.cpp (original)
+++ llvm/trunk/lib/IR/Verifier.cpp Thu Feb 21 12:04:20 2019
@@ -2043,7 +2043,7 @@ void Verifier::verifyFrameRecoverIndices
unsigned MaxRecoveredIndex = Counts.second.second;
Assert(MaxRecoveredIndex <= EscapedObjectCount,
"all indices passed to llvm.localrecover must be less than the "
- "number of arguments passed ot llvm.localescape in the parent "
+ "number of arguments passed to llvm.localescape in the parent "
"function",
F);
}
Modified: llvm/trunk/test/CodeGen/AMDGPU/sgpr-copy.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AMDGPU/sgpr-copy.ll?rev=354614&r1=354613&r2=354614&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AMDGPU/sgpr-copy.ll (original)
+++ llvm/trunk/test/CodeGen/AMDGPU/sgpr-copy.ll Thu Feb 21 12:04:20 2019
@@ -166,7 +166,7 @@ ENDIF24:
ret void
}
-; We just want ot make sure the program doesn't crash
+; We just want to make sure the program doesn't crash
; CHECK-LABEL: {{^}}loop:
define amdgpu_ps void @loop(<4 x i32> addrspace(4)* inreg %arg, <4 x i32> addrspace(4)* inreg %arg1, <8 x i32> addrspace(4)* inreg %arg2, i32 inreg %arg3, <2 x i32> %arg4, <2 x i32> %arg5, <2 x i32> %arg6, <3 x i32> %arg7, <2 x i32> %arg8, <2 x i32> %arg9, <2 x i32> %arg10, float %arg11, float %arg12, float %arg13, float %arg14, float %arg15, float %arg16, float %arg17, float %arg18, float %arg19) #0 {
main_body:
Modified: llvm/trunk/test/Verifier/frameescape.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Verifier/frameescape.ll?rev=354614&r1=354613&r2=354614&view=diff
==============================================================================
--- llvm/trunk/test/Verifier/frameescape.ll (original)
+++ llvm/trunk/test/Verifier/frameescape.ll Thu Feb 21 12:04:20 2019
@@ -66,4 +66,4 @@ define internal void @n(i8* %fp) {
call i8* @llvm.localrecover(i8* bitcast(void ()* @m to i8*), i8* %fp, i32 1)
ret void
}
-; CHECK: all indices passed to llvm.localrecover must be less than the number of arguments passed ot llvm.localescape in the parent function
+; CHECK: all indices passed to llvm.localrecover must be less than the number of arguments passed to llvm.localescape in the parent function
More information about the llvm-commits
mailing list