Add support for the __sync_sub_and_fetch atomics and friends for X86. The code
[oota-llvm.git] / test / CodeGen / X86 / mul64.ll
1 ; RUN: llvm-as < %s | llc -march=x86 | grep mul | count 3
2
3 define i64 @foo(i64 %t, i64 %u) {
4   %k = mul i64 %t, %u
5   ret i64 %k
6 }