[Alignment][NFC] Attributes use Align/MaybeAlign
[llvm-complete.git] / test / Other / X86 / opt-bisect-isel.ll
blob78a5f202646cb7ec6dfcf40a1a317d05e5f2c54d
1 ; This test verifies that no optimizations are performed on the @f function
2 ; when the -opt-bisect-limit=0 option is used.  In particular, the X86
3 ; instruction selector will optimize the cmp instruction to a sub instruction
4 ; if it is not run in -O0 mode.
6 ; RUN: llc -O3 -opt-bisect-limit=0 -o - %s | FileCheck %s
8 target triple = "x86_64-unknown-linux-gnu"
10 define void @f() {
11 entry:
12   %cmp = icmp slt i32 undef, 8
13   br i1 %cmp, label %middle, label %end
15 middle:
16   br label %end
18 end:
19   ret void
22 ; CHECK: cmpl $8, %eax