[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / Transforms / SimplifyCFG / speculate-call.ll
blob6e9398b6203cecc09e4bf5f0f264d1fc794d7fad
1 ; RUN: opt -S -simplifycfg < %s | FileCheck %s
3 ; CHECK-LABEL: @speculatable_attribute
4 ; CHECK: select
5 define i32 @speculatable_attribute(i32 %a) {
6 entry:
7   %c = icmp sgt i32 %a, 64
8   br i1 %c, label %end, label %if
10 if:
11   %val = call i32 @func() #0
12   br label %end
14 end:
15   %ret = phi i32 [%val, %if], [0, %entry]
16   ret i32 %ret
19 define i32 @func() #0 {
20   ret i32 1
22 attributes #0 = { nounwind readnone speculatable }