summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/add-sitofp.ll
blob: 40edf7114a068845703f3e34738a27489630cb18 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt < %s -instcombine -S | grep "add nsw i32"

define double @x(i32 %a, i32 %b) nounwind {
  %m = lshr i32 %a, 24
  %n = and i32 %m, %b
  %o = sitofp i32 %n to double
  %p = fadd double %o, 1.0
  ret double %p
}