Fix some broken CHECK lines.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 29 Nov 2010 22:34:55 +0000 (22:34 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 29 Nov 2010 22:34:55 +0000 (22:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120332 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/atomic_op.ll
test/MC/ELF/relocation.s
test/Transforms/DeadStoreElimination/simple.ll
test/Transforms/SimplifyLibCalls/StrSpn.ll

index 84bae46414d28c3f35ab1034e3ebb5d83332461c..f3ade93c8a30581536f3940efeb71e9a2b3e7436 100644 (file)
@@ -112,7 +112,7 @@ entry:
 define void @test2(i32 addrspace(256)* nocapture %P) nounwind {
 entry:
 ; CHECK: lock
-; CEHCK:       cmpxchgl        %{{.*}}, %gs:(%{{.*}})
+; CHECK:       cmpxchgl        %{{.*}}, %gs:(%{{.*}})
 
   %0 = tail call i32 @llvm.atomic.cmp.swap.i32.p256i32(i32 addrspace(256)* %P, i32 0, i32 1)
   ret void
index 8d38b86c34c3940f61e0b09eadea6504f47e49a5..663c91e8c1a039d80e223e0b57ffeb248436cd20 100644 (file)
@@ -21,7 +21,7 @@ bar:
 // CHECK:   # Symbol 0x00000002
 // CHECK: (('st_name', 0x00000000) # ''
 // CHECK:  ('st_bind', 0x00000000)
-// CHECK   ('st_type', 0x00000003)
+// CHECK:  ('st_type', 0x00000003)
 // CHECK:  ('st_other', 0x00000000)
 // CHECK:  ('st_shndx', 0x00000001)
 
index ab0ef7b7eb21102c785f93ff14e99d2304879dd4..6aba1d2125e27a34a9633ee3137ad613e59a1264 100644 (file)
@@ -27,7 +27,7 @@ define void @test2(i32 *%p, i32 *%q) {
 
 define i32 @test3(i32* %g_addr) nounwind {
 ; CHECK: @test3
-; CHEcK: load i32* %g_addr
+; CHECK: load i32* %g_addr
   %g_value = load i32* %g_addr, align 4
   store i32 -1, i32* @g, align 4
   store i32 %g_value, i32* %g_addr, align 4
index f77f32c67c40e0173fd4ebb22a7464923af1d9f6..800c19088337a52cc36704d5aac15341e905bc6e 100644 (file)
@@ -19,7 +19,7 @@ define i64 @testspn(i8* %s1, i8* %s2) {
        %test4 = call i64 @strspn(i8* %s1, i8* %s2)
 ; CHECK: call i64 @strspn(i8* %s1, i8* %s2)
        ret i64 %test3
-; CHECK ret i64 5
+; CHECK: ret i64 5
 }
 
 declare i64 @strcspn(i8*, i8*)