Enable the new no-SP register classes by default. This is to address
[oota-llvm.git] / test / CodeGen / X86 / umul-with-overflow.ll
1 ; RUN: llvm-as < %s | llc -march=x86 | grep "\\\\\\\<mul"
2
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
8 }