diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/switch-bt.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/switch-bt.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/switch-bt.ll b/llvm/test/CodeGen/X86/switch-bt.ll index 965cdbf17f5..797ad4bccfd 100644 --- a/llvm/test/CodeGen/X86/switch-bt.ll +++ b/llvm/test/CodeGen/X86/switch-bt.ll @@ -157,12 +157,13 @@ sw.epilog: } -; Omit the range check when the default case is unreachable, see PR43129. +; TODO: Omit the range check when the default case is unreachable, see PR43129. declare void @g(i32) define void @test5(i32 %x) { ; CHECK-LABEL: test5 -; CHECK-NOT: cmp +; CHECK: cmpl $8, %edi +; CHECK: ja ; 73 = 2^0 + 2^3 + 2^6 ; CHECK: movl $73 |