diff --git a/test/CodeGen/Generic/MachineBranchProb.ll b/test/CodeGen/Generic/MachineBranchProb.ll index b80d8b2e73c..441652110f2 100644 --- a/test/CodeGen/Generic/MachineBranchProb.ll +++ b/test/CodeGen/Generic/MachineBranchProb.ll @@ -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: diff --git a/test/CodeGen/X86/switch.ll b/test/CodeGen/X86/switch.ll index 639b9c0eb8f..68cead3ad4d 100644 --- a/test/CodeGen/X86/switch.ll +++ b/test/CodeGen/X86/switch.ll @@ -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