fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / Transforms / InstCombine / add-sitofp.ll
blob98a8cb452a6ceece91b6f0c9a10d6f8aeaf11359
1 ; RUN: opt < %s -instcombine -S | grep {add nsw i32}
3 define double @x(i32 %a, i32 %b) nounwind {
4   %m = lshr i32 %a, 24
5   %n = and i32 %m, %b
6   %o = sitofp i32 %n to double
7   %p = fadd double %o, 1.0
8   ret double %p