1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[test] Change comment wording (NFC)

llvm-svn: 363751
This commit is contained in:
Evandro Menezes 2019-06-18 23:31:10 +00:00
parent 5f50076bbf
commit a563756313
2 changed files with 9 additions and 9 deletions

View File

@ -63,7 +63,7 @@ bb5: tail call void @g(i32 5) br label %return
return: ret void
; Check that we set branch weights on the pivot cmp instruction correctly.
; Cases {0,10,20,30} go on the left with weight 13; cases {40,50} go on the
; Cases {0,100,200,300} go on the left with weight 13; cases {400,500} go on the
; right with weight 20.
;
; CHECK-LABEL: Machine code for function left_leaning_weight_balanced_tree:

View File

@ -783,12 +783,12 @@ end:
define void @range_with_unreachable_fallthrough(i32 %i) {
entry:
switch i32 %i, label %default [
i32 1, label %bb1
i32 2, label %bb1
i32 3, label %bb1
i32 4, label %bb2
i32 5, label %bb2
i32 6, label %bb2
i32 1, label %bb1
i32 2, label %bb1
i32 3, label %bb1
i32 4, label %bb2
i32 5, label %bb2
i32 6, label %bb2
]
bb1: tail call void @g(i32 0) br label %return
bb2: tail call void @g(i32 1) br label %return
@ -798,8 +798,8 @@ return:
ret void
; CHECK-LABEL: range_with_unreachable_fallthrough:
; Since the default is unreachable, either the 1--3 or the 4--6 cluster will be
; reached. Only one comparison should be emitted.
; Since the default is unreachable, either cluster will be reached.
; Only one comparison should be emitted.
; CHECK: cmpl
; CHECK-NOT: cmpl
; CHECK: jmp g