Shrink Thumb2 movcc instructions.
[llvm/avr.git] / test / CodeGen / X86 / umul-with-overflow.ll
blob9e69154f10f9db2c5fab99b5853a97eeb8d1af56
1 ; RUN: llvm-as < %s | llc -march=x86 | grep "\\\\\\\<mul"
3 declare {i32, i1} @llvm.umul.with.overflow.i32(i32 %a, i32 %b)
4 define i1 @a(i32 %x) zeroext nounwind {
5   %res = call {i32, i1} @llvm.umul.with.overflow.i32(i32 %x, i32 3)
6   %obil = extractvalue {i32, i1} %res, 1
7   ret i1 %obil