blob: 98a8cb452a6ceece91b6f0c9a10d6f8aeaf11359 (
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
}
|