diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/switch-bt.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/switch-bt.ll | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/switch-bt.ll b/llvm/test/CodeGen/X86/switch-bt.ll index 2cf3aafe547..113782169b0 100644 --- a/llvm/test/CodeGen/X86/switch-bt.ll +++ b/llvm/test/CodeGen/X86/switch-bt.ll @@ -140,17 +140,19 @@ sw.epilog: ; The balanced binary switch here would start with a comparison against 39, but ; it is currently starting with 29 because of the density-sum heuristic. -; CHECK: cmpl $39 +; CHECK: cmpl $29 ; CHECK: jg ; CHECK: cmpl $10 -; CHECK: je +; CHECK: jne +; CHECK: cmpl $49 +; CHECK: jg +; CHECK: cmpl $30 +; CHECK: jne ; CHECK: cmpl $20 ; CHECK: jne -; CHECK: cmpl $40 -; CHECK: je ; CHECK: cmpl $50 ; CHECK: jne -; CHECK: cmpl $30 +; CHECK: cmpl $40 ; CHECK: jne ; CHECK: cmpl $60 ; CHECK: jne |